Summary|
Tags|
Feature:
examples/users/DEV.feature|
To validate the Test of Consumer App in DEV Environment
Scenario: [1.1:26]
To validate the login response for users with valid credentials
ms: 1125
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:01.452 karate.env system property was: null
20:57:01.452 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
16
Given headers req_headers
0
17
And url baseUrl
0
18
And path loginApiUrl
1
19
And request {email:maharaja@crayondata.com, password:12345}
0
20
When method post
1123
20:57:01.458 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/auth/login
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 52
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"email":"maharaja@crayondata.com","password":12345}
20:57:02.578 response time in milliseconds: 1109
1 < 404
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < Vary: accept-encoding,origin,access-control-request-headers,access-control-request-method,accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:01 GMT
{"status":404,"message":"No message available"}
21
Then status 200
0
20:57:02.579 classpath:examples/users/DEV.feature:21
Then status 200
status code was: 404, expected: 200, response time in milliseconds: 1109, url: https://dev-consumer-api.crayondata.com/api/v3/auth/login, response:
{"status":404,"message":"No message available"}
classpath:examples/users/DEV.feature:21
22
Then print response
0
Scenario: [2.1:40]
To validate the login response for users with invalid credentials
ms: 1071
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:02.162 karate.env system property was: null
20:57:02.162 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
30
Given headers req_headers
0
31
And url baseUrl
0
32
And path loginApiUrl
1
33
And request {email:maharaja@crayondata.com, password:123456}
0
34
When method post
1069
20:57:02.168 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/auth/login
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 53
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"email":"maharaja@crayondata.com","password":123456}
20:57:03.235 response time in milliseconds: 1066
1 < 404
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < Vary: accept-encoding,origin,access-control-request-headers,access-control-request-method,accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:02 GMT
{"status":404,"message":"No message available"}
35
Then status 401
0
20:57:03.236 classpath:examples/users/DEV.feature:35
Then status 401
status code was: 404, expected: 401, response time in milliseconds: 1066, url: https://dev-consumer-api.crayondata.com/api/v3/auth/login, response:
{"status":404,"message":"No message available"}
classpath:examples/users/DEV.feature:35
36
Then print response
0
Scenario: [2.2:41]
To validate the login response for users with invalid credentials
ms: 983
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:02.495 karate.env system property was: null
20:57:02.498 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
30
Given headers req_headers
0
31
And url baseUrl
0
32
And path loginApiUrl
1
33
And request {email:maharajacrayondata.com, password:123456}
0
34
When method post
981
20:57:02.503 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/auth/login
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 52
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"email":"maharajacrayondata.com","password":123456}
20:57:03.481 response time in milliseconds: 978
1 < 404
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < Vary: accept-encoding,origin,access-control-request-headers,access-control-request-method,accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:02 GMT
{"status":404,"message":"No message available"}
35
Then status 401
0
20:57:03.483 classpath:examples/users/DEV.feature:35
Then status 401
status code was: 404, expected: 401, response time in milliseconds: 978, url: https://dev-consumer-api.crayondata.com/api/v3/auth/login, response:
{"status":404,"message":"No message available"}
classpath:examples/users/DEV.feature:35
36
Then print response
0
Scenario: [2.3:42]
To validate the login response for users with invalid credentials
ms: 4
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
2
20:57:02.584 karate.env system property was: null
20:57:02.585 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
30
Given headers req_headers
0
31
And url baseUrl
0
32
And path loginApiUrl
1
33
And request {email:maharaja@crayondata.com, password:}
1
20:57:02.592 classpath:examples/users/DEV.feature:33
And request {email:maharaja@crayondata.com, password:}
net.minidev.json.parser.ParseException: Unexpected character (}) at position 41.
classpath:examples/users/DEV.feature:33
34
When method post
0
35
Then status 401
0
36
Then print response
0
Scenario: [2.4:43]
To validate the login response for users with invalid credentials
ms: 1131
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:02.598 karate.env system property was: null
20:57:02.598 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
30
Given headers req_headers
0
31
And url baseUrl
0
32
And path loginApiUrl
0
33
And request {email:, password:123456}
0
34
When method post
1129
20:57:02.602 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/auth/login
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 30
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"email":"","password":123456}
20:57:03.729 response time in milliseconds: 1127
1 < 404
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < Vary: accept-encoding,origin,access-control-request-headers,access-control-request-method,accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:02 GMT
{"status":404,"message":"No message available"}
35
Then status 401
0
20:57:03.730 classpath:examples/users/DEV.feature:35
Then status 401
status code was: 404, expected: 401, response time in milliseconds: 1127, url: https://dev-consumer-api.crayondata.com/api/v3/auth/login, response:
{"status":404,"message":"No message available"}
classpath:examples/users/DEV.feature:35
36
Then print response
0
Scenario: [2.5:44]
To validate the login response for users with invalid credentials
ms: 2
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:02.612 karate.env system property was: null
20:57:02.612 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
30
Given headers req_headers
0
31
And url baseUrl
0
32
And path loginApiUrl
1
33
And request {email:, password:}
0
20:57:02.617 classpath:examples/users/DEV.feature:33
And request {email:, password:}
net.minidev.json.parser.ParseException: Unexpected character (}) at position 18.
classpath:examples/users/DEV.feature:33
34
When method post
0
35
Then status 401
0
36
Then print response
0
Scenario: [3.1:58]
To validate the login response for users with valid credentials and set access token for other request
ms: 1033
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
1
20:57:02.623 karate.env system property was: null
20:57:02.624 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
48
Given headers req_headers
0
49
And url baseUrl
0
50
And path loginApiUrl
0
51
And request {email:maharaja@crayondata.com, password:12345}
0
52
When method post
1030
20:57:02.634 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/auth/login
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 52
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"email":"maharaja@crayondata.com","password":12345}
20:57:03.660 response time in milliseconds: 1025
1 < 404
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < Vary: accept-encoding,origin,access-control-request-headers,access-control-request-method,accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:02 GMT
{"status":404,"message":"No message available"}
53
Then status 200
0
20:57:03.661 classpath:examples/users/DEV.feature:53
Then status 200
status code was: 404, expected: 200, response time in milliseconds: 1025, url: https://dev-consumer-api.crayondata.com/api/v3/auth/login, response:
{"status":404,"message":"No message available"}
classpath:examples/users/DEV.feature:53
54
Then print response
0
Scenario: [4.1:73]
To validate the response for cities api
ms: 1042
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:02.702 karate.env system property was: null
20:57:02.703 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
62
Given headers req_headers
0
63
And url baseUrl
0
64
And path citiesApiUrl
1
65
And params lang
0
66
And request {latitude:55.287155, longitude:55.287155}
0
67
When method post
1036
20:57:02.709 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/list/cities?lang=en
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 44
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"latitude":55.287155,"longitude":55.287155}
20:57:03.740 response time in milliseconds: 1029
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:02 GMT
[{"label":"Abano Terme","value":"Abano Terme","geoCode":{"latitude":"45.35753","longitude":"11.78725"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Abu Dhabi","value":"Abu Dhabi","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Aigle","value":"Aigle","geoCode":{"latitude":"46.3181","longitude":"6.96457"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Ajman","value":"Ajman","geoCode":{"latitude":"25.40328","longitude":"55.52341"},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Al Ain","value":"Al Ain","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Alanya","value":"Alanya","geoCode":{"latitude":"36.54375","longitude":"31.99982"},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Albufeira","value":"Albufeira","geoCode":{"latitude":"37.08819","longitude":"-8.2503"},"countryLabel":"Portugal","countryValue":"Portugal","countryCode":"PT"},{"label":"Alexandria","value":"Alexandria","geoCode":{"latitude":"31.20176","longitude":"29.91582"},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Alif Dhaal Atoll","value":"Alif Dhaal Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Amman","value":"Amman","geoCode":{"latitude":"31.95522","longitude":"35.94503"},"countryLabel":"Jordan","countryValue":"Jordan","countryCode":"JO"},{"label":"Amsterdam","value":"Amsterdam","geoCode":{"latitude":"52.37403","longitude":"4.88969"},"countryLabel":"Netherlands","countryValue":"Netherlands","countryCode":"NL"},{"label":"Annecy","value":"Annecy","geoCode":{"latitude":"45.90878","longitude":"6.12565"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Antalya","value":"Antalya","geoCode":{"latitude":"36.90812","longitude":"30.69556"},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Arlington","value":"Arlington","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Aswan","value":"Aswan","geoCode":{"latitude":"24.09082","longitude":"32.89942"},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Athens","value":"Athens","geoCode":{"latitude":"37.98376","longitude":"23.72784"},"countryLabel":"Greece","countryValue":"Greece","countryCode":"GR"},{"label":"Athens","value":"Athens","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Baa Atoll","value":"Baa Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Bad Hofgastein","value":"Bad Hofgastein","geoCode":{"latitude":"47.17274","longitude":"13.09871"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Baku","value":"Baku","geoCode":{"latitude":"40.37767","longitude":"49.89201"},"countryLabel":"Azerbaijan","countryValue":"Azerbaijan","countryCode":"AZ"},{"label":"Bangkok","value":"Bangkok","geoCode":{"latitude":"13.75398","longitude":"100.50144"},"countryLabel":"Thailand","countryValue":"Thailand","countryCode":"TH"},{"label":"Barcelona","value":"Barcelona","geoCode":{"latitude":"41.38879","longitude":"2.15899"},"countryLabel":"Spain","countryValue":"Spain","countryCode":"ES"},{"label":"Basel","value":"Basel","geoCode":{"latitude":"47.554722","longitude":"7.590556"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Belgrade","value":"Belgrade","geoCode":{"latitude":"44.80401","longitude":"20.46513"},"countryLabel":"Serbia","countryValue":"Serbia","countryCode":"RS"},{"label":"Beni Magd√ªl","value":"Beni Magd√ªl","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Berlin","value":"Berlin","geoCode":{"latitude":"52.52437","longitude":"13.41053"},"countryLabel":"Germany","countryValue":"Germany","countryCode":"DE"},{"label":"Bern","value":"Bern","geoCode":{"latitude":"46.94809","longitude":"7.44744"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Birmingham","value":"Birmingham","geoCode":{"latitude":"52.48142","longitude":"-1.89983"},"countryLabel":"United Kingdom","countryValue":"United Kingdom","countryCode":"GB"},{"label":"Blagnac","value":"Blagnac","geoCode":{"latitude":"43.63276","longitude":"1.39399"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Buraimi","value":"Buraimi","geoCode":{"latitude":"24.225058","longitude":"55.76629"},"countryLabel":"Oman","countryValue":"Oman","countryCode":"AE"},{"label":"Bursa","value":"Bursa","geoCode":{"latitude":"40.19559","longitude":"29.06013"},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Cabo San Lucas","value":"Cabo San Lucas","geoCode":{"latitude":"22.89088","longitude":"-109.91238"},"countryLabel":"Mexico","countryValue":"Mexico","countryCode":"MX"},{"label":"Caen","value":"Caen","geoCode":{"latitude":"49.18585","longitude":"-0.35912"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Cairo","value":"Cairo","geoCode":{"latitude":"30.06263","longitude":"31.24967"},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Cannes","value":"Cannes","geoCode":{"latitude":"43.55135","longitude":"7.01275"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Casablanca","value":"Casablanca","geoCode":{"latitude":"33.5884","longitude":"-7.55785"},"countryLabel":"Morocco","countryValue":"Morocco","countryCode":"MA"},{"label":"Catania","value":"Catania","geoCode":{"latitude":"37.47169","longitude":"14.84731"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Chicago","value":"Chicago","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Como","value":"Como","geoCode":{"latitude":"45.80819","longitude":"9.0832"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Davos","value":"Davos","geoCode":{"latitude":"46.80429","longitude":"9.83723"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Divonne-les-bains","value":"Divonne-les-bains","geoCode":{"latitude":"46.3571","longitude":"6.13494"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Doha","value":"Doha","geoCode":{"latitude":"25.28545","longitude":"51.53096"},"countryLabel":"Qatar","countryValue":"Qatar","countryCode":"QA"},{"label":"Dorfgastein","value":"Dorfgastein","geoCode":{"latitude":"47.24172","longitude":"13.10223"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Dubai","value":"Dubai","geoCode":{"latitude":"25.0657","longitude":"55.17128"},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Dublin","value":"Dublin","geoCode":{"latitude":"53.33306","longitude":"-6.24889"},"countryLabel":"Ireland","countryValue":"Ireland","countryCode":"IE"},{"label":"Edinburgh","value":"Edinburgh","geoCode":{"latitude":"55.95206","longitude":"-3.19648"},"countryLabel":"United Kingdom","countryValue":"United Kingdom","countryCode":"GB"},{"label":"Engelberg","value":"Engelberg","geoCode":{"latitude":"46.82107","longitude":"8.40133"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Eureka","value":"Eureka","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Mexico","countryValue":"Mexico","countryCode":"MX"},{"label":"Florence","value":"Florence","geoCode":{"latitude":"43.77925","longitude":"11.24626"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Fujairah","value":"Fujairah","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Geneva","value":"Geneva","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Graz","value":"Graz","geoCode":{"latitude":"47.06667","longitude":"15.45"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Grindelwald","value":"Grindelwald","geoCode":{"latitude":"46.62396","longitude":"8.03601"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"G√æza","value":"G√æza","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Heidelberg","value":"Heidelberg","geoCode":{"latitude":"49.40768","longitude":"8.69079"},"countryLabel":"Germany","countryValue":"Germany","countryCode":"DE"},{"label":"Hong Kong","value":"Hong Kong","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Hong Kong","countryValue":"Hong Kong","countryCode":"HK"},{"label":"Hulhumale","value":"Hulhumale","geoCode":{"latitude":"4.21169","longitude":"73.54008"},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Hurghada","value":"Hurghada","geoCode":{"latitude":"27.25738","longitude":"33.81291"},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Interlaken","value":"Interlaken","geoCode":{"latitude":"46.68387","longitude":"7.86638"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Istanbul","value":"Istanbul","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Jeddah","value":"Jeddah","geoCode":{"latitude":"21.54238","longitude":"39.19797"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Jeddah","value":"Jeddah","geoCode":{"latitude":"21.54277778","longitude":"39.17277778"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Karon","value":"Karon","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Thailand","countryValue":"Thailand","countryCode":"TH"},{"label":"Khobar","value":"Khobar","geoCode":{"latitude":"26.27944","longitude":"50.20833"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Koniz","value":"Koniz","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Kyiv","value":"Kyiv","geoCode":{"latitude":"50.45466","longitude":"30.5238"},"countryLabel":"Ukraine","countryValue":"Ukraine","countryCode":"UA"},{"label":"Kyrenia","value":"Kyrenia","geoCode":{"latitude":"35.33634","longitude":"33.31729"},"countryLabel":"Cyprus","countryValue":"Cyprus","countryCode":"CY"},{"label":"Larnaca","value":"Larnaca","geoCode":{"latitude":"34.92291","longitude":"33.6233"},"countryLabel":"Cyprus","countryValue":"Cyprus","countryCode":"CY"},{"label":"Las Vegas","value":"Las Vegas","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Lausanne","value":"Lausanne","geoCode":{"latitude":"46.516","longitude":"6.63282"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Lhaviyani Atoll","value":"Lhaviyani Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Lisbon","value":"Lisbon","geoCode":{"latitude":"38.71666667","longitude":"-9.16666667"},"countryLabel":"Portugal","countryValue":"Portugal","countryCode":"PT"},{"label":"Lisbon","value":"Lisbon","geoCode":{"latitude":"38.72635","longitude":"-9.14843"},"countryLabel":"Portugal","countryValue":"Portugal","countryCode":"PT"},{"label":"Liverpool","value":"Liverpool","geoCode":{"latitude":"53.41058","longitude":"-2.97794"},"countryLabel":"United Kingdom","countryValue":"United Kingdom","countryCode":"GB"},{"label":"London","value":"London","geoCode":{"latitude":"51.50853","longitude":"-0.12574"},"countryLabel":"United Kingdom","countryValue":"United Kingdom","countryCode":"GB"},{"label":"Los Angeles","value":"Los Angeles","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Luzern","value":"Luzern","geoCode":{"latitude":"47.05048","longitude":"8.30635"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Lyon","value":"Lyon","geoCode":{"latitude":"45.74846","longitude":"4.84671"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Madrid","value":"Madrid","geoCode":{"latitude":"40.4165","longitude":"-3.70256"},"countryLabel":"Spain","countryValue":"Spain","countryCode":"ES"},{"label":"Male","value":"Male","geoCode":{"latitude":"4.17521","longitude":"73.50916"},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Marbella","value":"Marbella","geoCode":{"latitude":"36.51543","longitude":"-4.88583"},"countryLabel":"Spain","countryValue":"Spain","countryCode":"ES"},{"label":"Marseille","value":"Marseille","geoCode":{"latitude":"43.29695","longitude":"5.38107"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Mauregard","value":"Mauregard","geoCode":{"latitude":null,"longitude":null},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Mecca","value":"Mecca","geoCode":{"latitude":"21.4225","longitude":"39.82611111"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Mecca","value":"Mecca","geoCode":{"latitude":"21.42664","longitude":"39.82563"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Medina","value":"Medina","geoCode":{"latitude":"24.46861","longitude":"39.61417"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Melbourne","value":"Melbourne","geoCode":{"latitude":"-37.814","longitude":"144.96332"},"countryLabel":"Australia","countryValue":"Australia","countryCode":"AU"},{"label":"Milan","value":"Milan","geoCode":{"latitude":"45.46427","longitude":"9.18951"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Modena","value":"Modena","geoCode":{"latitude":"44.64783","longitude":"10.92539"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Monaco","value":"Monaco","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Monaco","countryValue":"Monaco","countryCode":"MC"},{"label":"Montreal","value":"Montreal","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Canada","countryValue":"Canada","countryCode":"CA"},{"label":"Montreux","value":"Montreux","geoCode":{"latitude":"46.43301","longitude":"6.91143"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Morges","value":"Morges","geoCode":{"latitude":"46.51127","longitude":"6.49854"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Moscow","value":"Moscow","geoCode":{"latitude":"55.75222","longitude":"37.61556"},"countryLabel":"Russia","countryValue":"Russia","countryCode":"RU"},{"label":"Mostar","value":"Mostar","geoCode":{"latitude":"43.34333","longitude":"17.80806"},"countryLabel":"Bosnia And Herzegovina","countryValue":"Bosnia And Herzegovina","countryCode":"BA"},{"label":"Mugla","value":"Mugla","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Munich","value":"Munich","geoCode":{"latitude":"48.13743","longitude":"11.57549"},"countryLabel":"Germany","countryValue":"Germany","countryCode":"DE"},{"label":"M√ωkonos","value":"M√ωkonos","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Greece","countryValue":"Greece","countryCode":"GR"},{"label":"Nairobi","value":"Nairobi","geoCode":{"latitude":"-1.28333","longitude":"36.81667"},"countryLabel":"Kenya","countryValue":"Kenya","countryCode":"KE"},{"label":"Naples","value":"Naples","geoCode":{"latitude":"40.85216","longitude":"14.26811"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"New York City","value":"New York City","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Nice","value":"Nice","geoCode":{"latitude":"43.70313","longitude":"7.26608"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"North Male Atoll","value":"North Male Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Novosibirsk","value":"Novosibirsk","geoCode":{"latitude":"55.0415","longitude":"82.9346"},"countryLabel":"Russia","countryValue":"Russia","countryCode":"RU"},{"label":"Orlando","value":"Orlando","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Palermo","value":"Palermo","geoCode":{"latitude":"37.81667","longitude":"13.58333"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Paphos","value":"Paphos","geoCode":{"latitude":"34.77679","longitude":"32.42451"},"countryLabel":"Cyprus","countryValue":"Cyprus","countryCode":"CY"},{"label":"Paris","value":"Paris","geoCode":{"latitude":"48.8534","longitude":"2.3486"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Phuket","value":"Phuket","geoCode":{"latitude":"7.89059","longitude":"98.3981"},"countryLabel":"Thailand","countryValue":"Thailand","countryCode":"TH"},{"label":"Praslin Island","value":"Praslin Island","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Seychelles","countryValue":"Seychelles","countryCode":"SC"},{"label":"Quarteira","value":"Quarteira","geoCode":{"latitude":"37.06946","longitude":"-8.10064"},"countryLabel":"Portugal","countryValue":"Portugal","countryCode":"PT"},{"label":"Rabat","value":"Rabat","geoCode":{"latitude":"34.01325","longitude":"-6.83255"},"countryLabel":"Morocco","countryValue":"Morocco","countryCode":"MA"},{"label":"Ras Al Khaimah","value":"Ras Al Khaimah","geoCode":{"latitude":"25.46116","longitude":"56.04058"},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Riyadh","value":"Riyadh","geoCode":{"latitude":"24.68773","longitude":"46.72185"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Rome","value":"Rome","geoCode":{"latitude":"41.89193","longitude":"12.51133"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"R√≥dos","value":"R√≥dos","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Greece","countryValue":"Greece","countryCode":"GR"},{"label":"Saint Petersburg","value":"Saint Petersburg","geoCode":{"latitude":"59.93863","longitude":"30.31413"},"countryLabel":"Russia","countryValue":"Russia","countryCode":"RU"},{"label":"Saint-laurent-du-var","value":"Saint-laurent-du-var","geoCode":{"latitude":"43.67323","longitude":"7.19"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Salzburg","value":"Salzburg","geoCode":{"latitude":"47.79941","longitude":"13.04399"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Samedan","value":"Samedan","geoCode":{"latitude":"46.53399","longitude":"9.87276"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"San Diego","value":"San Diego","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"San Francisco","value":"San Francisco","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"San Jos√© Del Cabo","value":"San Jos√© Del Cabo","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Mexico","countryValue":"Mexico","countryCode":"MX"},{"label":"Santorini","value":"Santorini","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Greece","countryValue":"Greece","countryCode":"GR"},{"label":"Sarajevo","value":"Sarajevo","geoCode":{"latitude":"43.84864","longitude":"18.35644"},"countryLabel":"Bosnia And Herzegovina","countryValue":"Bosnia And Herzegovina","countryCode":"BA"},{"label":"Sciacca","value":"Sciacca","geoCode":{"latitude":"37.50693","longitude":"13.08399"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Seoul","value":"Seoul","geoCode":{"latitude":"37.566","longitude":"126.9784"},"countryLabel":"South Korea","countryValue":"South Korea","countryCode":"KR"},{"label":"Sharjah","value":"Sharjah","geoCode":{"latitude":"25.33737","longitude":"55.41206"},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Sharm El Sheikh","value":"Sharm El Sheikh","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Siem Reap","value":"Siem Reap","geoCode":{"latitude":"13.36179","longitude":"103.86056"},"countryLabel":"Cambodia","countryValue":"Cambodia","countryCode":"KH"},{"label":"Sochi","value":"Sochi","geoCode":{"latitude":"43.59917","longitude":"39.72569"},"countryLabel":"Russia","countryValue":"Russia","countryCode":"RU"},{"label":"South Male Atoll","value":"South Male Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Stockholm","value":"Stockholm","geoCode":{"latitude":"59.33258","longitude":"18.0649"},"countryLabel":"Sweden","countryValue":"Sweden","countryCode":"SE"},{"label":"Sydney","value":"Sydney","geoCode":{"latitude":"-33.86785","longitude":"151.20732"},"countryLabel":"Australia","countryValue":"Australia","countryCode":"AU"},{"label":"Tampa","value":"Tampa","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Tangier","value":"Tangier","geoCode":{"latitude":"35.76727","longitude":"-5.79975"},"countryLabel":"Morocco","countryValue":"Morocco","countryCode":"MA"},{"label":"Tbilisi","value":"Tbilisi","geoCode":{"latitude":"41.69411","longitude":"44.83368"},"countryLabel":"Georgia","countryValue":"Georgia","countryCode":"GE"},{"label":"Tepoztl√°n","value":"Tepoztl√°n","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Mexico","countryValue":"Mexico","countryCode":"MX"},{"label":"Toronto","value":"Toronto","geoCode":{"latitude":"43.70011","longitude":"-79.4163"},"countryLabel":"Canada","countryValue":"Canada","countryCode":"CA"},{"label":"Trabzon","value":"Trabzon","geoCode":{"latitude":"41.005","longitude":"39.72694"},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Vancouver","value":"Vancouver","geoCode":{"latitude":"49.24966","longitude":"-123.11934"},"countryLabel":"Canada","countryValue":"Canada","countryCode":"CA"},{"label":"Venice","value":"Venice","geoCode":{"latitude":"45.43713","longitude":"12.33265"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Versailles","value":"Versailles","geoCode":{"latitude":"48.80359","longitude":"2.13424"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Vienna","value":"Vienna","geoCode":{"latitude":"48.20849","longitude":"16.37208"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Villeneuve","value":"Villeneuve","geoCode":{"latitude":"46.39869","longitude":"6.92654"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Viry-ch√¢tillon","value":"Viry-ch√¢tillon","geoCode":{"latitude":null,"longitude":null},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Washington","value":"Washington","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Yerevan","value":"Yerevan","geoCode":{"latitude":"40.18111","longitude":"44.51361"},"countryLabel":"Armenia","countryValue":"Armenia","countryCode":"AM"},{"label":"Zanzibar City","value":"Zanzibar City","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Tanzania","countryValue":"Tanzania","countryCode":"TZ"},{"label":"Zell Am See","value":"Zell Am See","geoCode":{"latitude":"47.32556","longitude":"12.79444"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Zermatt","value":"Zermatt","geoCode":{"latitude":"46.01998","longitude":"7.74863"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Zurich","value":"Zurich","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"}]
68
Then status 200
0
69
Then print response
5
20:57:03.747 [print] [
{
"label": "Abano Terme",
"value": "Abano Terme",
"geoCode": {
"latitude": "45.35753",
"longitude": "11.78725"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Abu Dhabi",
"value": "Abu Dhabi",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Aigle",
"value": "Aigle",
"geoCode": {
"latitude": "46.3181",
"longitude": "6.96457"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Ajman",
"value": "Ajman",
"geoCode": {
"latitude": "25.40328",
"longitude": "55.52341"
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Al Ain",
"value": "Al Ain",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Alanya",
"value": "Alanya",
"geoCode": {
"latitude": "36.54375",
"longitude": "31.99982"
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Albufeira",
"value": "Albufeira",
"geoCode": {
"latitude": "37.08819",
"longitude": "-8.2503"
},
"countryLabel": "Portugal",
"countryValue": "Portugal",
"countryCode": "PT"
},
{
"label": "Alexandria",
"value": "Alexandria",
"geoCode": {
"latitude": "31.20176",
"longitude": "29.91582"
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Alif Dhaal Atoll",
"value": "Alif Dhaal Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Amman",
"value": "Amman",
"geoCode": {
"latitude": "31.95522",
"longitude": "35.94503"
},
"countryLabel": "Jordan",
"countryValue": "Jordan",
"countryCode": "JO"
},
{
"label": "Amsterdam",
"value": "Amsterdam",
"geoCode": {
"latitude": "52.37403",
"longitude": "4.88969"
},
"countryLabel": "Netherlands",
"countryValue": "Netherlands",
"countryCode": "NL"
},
{
"label": "Annecy",
"value": "Annecy",
"geoCode": {
"latitude": "45.90878",
"longitude": "6.12565"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Antalya",
"value": "Antalya",
"geoCode": {
"latitude": "36.90812",
"longitude": "30.69556"
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Arlington",
"value": "Arlington",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Aswan",
"value": "Aswan",
"geoCode": {
"latitude": "24.09082",
"longitude": "32.89942"
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Athens",
"value": "Athens",
"geoCode": {
"latitude": "37.98376",
"longitude": "23.72784"
},
"countryLabel": "Greece",
"countryValue": "Greece",
"countryCode": "GR"
},
{
"label": "Athens",
"value": "Athens",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Baa Atoll",
"value": "Baa Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Bad Hofgastein",
"value": "Bad Hofgastein",
"geoCode": {
"latitude": "47.17274",
"longitude": "13.09871"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Baku",
"value": "Baku",
"geoCode": {
"latitude": "40.37767",
"longitude": "49.89201"
},
"countryLabel": "Azerbaijan",
"countryValue": "Azerbaijan",
"countryCode": "AZ"
},
{
"label": "Bangkok",
"value": "Bangkok",
"geoCode": {
"latitude": "13.75398",
"longitude": "100.50144"
},
"countryLabel": "Thailand",
"countryValue": "Thailand",
"countryCode": "TH"
},
{
"label": "Barcelona",
"value": "Barcelona",
"geoCode": {
"latitude": "41.38879",
"longitude": "2.15899"
},
"countryLabel": "Spain",
"countryValue": "Spain",
"countryCode": "ES"
},
{
"label": "Basel",
"value": "Basel",
"geoCode": {
"latitude": "47.554722",
"longitude": "7.590556"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Belgrade",
"value": "Belgrade",
"geoCode": {
"latitude": "44.80401",
"longitude": "20.46513"
},
"countryLabel": "Serbia",
"countryValue": "Serbia",
"countryCode": "RS"
},
{
"label": "Beni Magdûl",
"value": "Beni Magdûl",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Berlin",
"value": "Berlin",
"geoCode": {
"latitude": "52.52437",
"longitude": "13.41053"
},
"countryLabel": "Germany",
"countryValue": "Germany",
"countryCode": "DE"
},
{
"label": "Bern",
"value": "Bern",
"geoCode": {
"latitude": "46.94809",
"longitude": "7.44744"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Birmingham",
"value": "Birmingham",
"geoCode": {
"latitude": "52.48142",
"longitude": "-1.89983"
},
"countryLabel": "United Kingdom",
"countryValue": "United Kingdom",
"countryCode": "GB"
},
{
"label": "Blagnac",
"value": "Blagnac",
"geoCode": {
"latitude": "43.63276",
"longitude": "1.39399"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Buraimi",
"value": "Buraimi",
"geoCode": {
"latitude": "24.225058",
"longitude": "55.76629"
},
"countryLabel": "Oman",
"countryValue": "Oman",
"countryCode": "AE"
},
{
"label": "Bursa",
"value": "Bursa",
"geoCode": {
"latitude": "40.19559",
"longitude": "29.06013"
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Cabo San Lucas",
"value": "Cabo San Lucas",
"geoCode": {
"latitude": "22.89088",
"longitude": "-109.91238"
},
"countryLabel": "Mexico",
"countryValue": "Mexico",
"countryCode": "MX"
},
{
"label": "Caen",
"value": "Caen",
"geoCode": {
"latitude": "49.18585",
"longitude": "-0.35912"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Cairo",
"value": "Cairo",
"geoCode": {
"latitude": "30.06263",
"longitude": "31.24967"
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Cannes",
"value": "Cannes",
"geoCode": {
"latitude": "43.55135",
"longitude": "7.01275"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Casablanca",
"value": "Casablanca",
"geoCode": {
"latitude": "33.5884",
"longitude": "-7.55785"
},
"countryLabel": "Morocco",
"countryValue": "Morocco",
"countryCode": "MA"
},
{
"label": "Catania",
"value": "Catania",
"geoCode": {
"latitude": "37.47169",
"longitude": "14.84731"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Chicago",
"value": "Chicago",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Como",
"value": "Como",
"geoCode": {
"latitude": "45.80819",
"longitude": "9.0832"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Davos",
"value": "Davos",
"geoCode": {
"latitude": "46.80429",
"longitude": "9.83723"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Divonne-les-bains",
"value": "Divonne-les-bains",
"geoCode": {
"latitude": "46.3571",
"longitude": "6.13494"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Doha",
"value": "Doha",
"geoCode": {
"latitude": "25.28545",
"longitude": "51.53096"
},
"countryLabel": "Qatar",
"countryValue": "Qatar",
"countryCode": "QA"
},
{
"label": "Dorfgastein",
"value": "Dorfgastein",
"geoCode": {
"latitude": "47.24172",
"longitude": "13.10223"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Dubai",
"value": "Dubai",
"geoCode": {
"latitude": "25.0657",
"longitude": "55.17128"
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Dublin",
"value": "Dublin",
"geoCode": {
"latitude": "53.33306",
"longitude": "-6.24889"
},
"countryLabel": "Ireland",
"countryValue": "Ireland",
"countryCode": "IE"
},
{
"label": "Edinburgh",
"value": "Edinburgh",
"geoCode": {
"latitude": "55.95206",
"longitude": "-3.19648"
},
"countryLabel": "United Kingdom",
"countryValue": "United Kingdom",
"countryCode": "GB"
},
{
"label": "Engelberg",
"value": "Engelberg",
"geoCode": {
"latitude": "46.82107",
"longitude": "8.40133"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Eureka",
"value": "Eureka",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Mexico",
"countryValue": "Mexico",
"countryCode": "MX"
},
{
"label": "Florence",
"value": "Florence",
"geoCode": {
"latitude": "43.77925",
"longitude": "11.24626"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Fujairah",
"value": "Fujairah",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Geneva",
"value": "Geneva",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Graz",
"value": "Graz",
"geoCode": {
"latitude": "47.06667",
"longitude": "15.45"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Grindelwald",
"value": "Grindelwald",
"geoCode": {
"latitude": "46.62396",
"longitude": "8.03601"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Gþza",
"value": "Gþza",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Heidelberg",
"value": "Heidelberg",
"geoCode": {
"latitude": "49.40768",
"longitude": "8.69079"
},
"countryLabel": "Germany",
"countryValue": "Germany",
"countryCode": "DE"
},
{
"label": "Hong Kong",
"value": "Hong Kong",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Hong Kong",
"countryValue": "Hong Kong",
"countryCode": "HK"
},
{
"label": "Hulhumale",
"value": "Hulhumale",
"geoCode": {
"latitude": "4.21169",
"longitude": "73.54008"
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Hurghada",
"value": "Hurghada",
"geoCode": {
"latitude": "27.25738",
"longitude": "33.81291"
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Interlaken",
"value": "Interlaken",
"geoCode": {
"latitude": "46.68387",
"longitude": "7.86638"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Istanbul",
"value": "Istanbul",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Jeddah",
"value": "Jeddah",
"geoCode": {
"latitude": "21.54238",
"longitude": "39.19797"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Jeddah",
"value": "Jeddah",
"geoCode": {
"latitude": "21.54277778",
"longitude": "39.17277778"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Karon",
"value": "Karon",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Thailand",
"countryValue": "Thailand",
"countryCode": "TH"
},
{
"label": "Khobar",
"value": "Khobar",
"geoCode": {
"latitude": "26.27944",
"longitude": "50.20833"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Koniz",
"value": "Koniz",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Kyiv",
"value": "Kyiv",
"geoCode": {
"latitude": "50.45466",
"longitude": "30.5238"
},
"countryLabel": "Ukraine",
"countryValue": "Ukraine",
"countryCode": "UA"
},
{
"label": "Kyrenia",
"value": "Kyrenia",
"geoCode": {
"latitude": "35.33634",
"longitude": "33.31729"
},
"countryLabel": "Cyprus",
"countryValue": "Cyprus",
"countryCode": "CY"
},
{
"label": "Larnaca",
"value": "Larnaca",
"geoCode": {
"latitude": "34.92291",
"longitude": "33.6233"
},
"countryLabel": "Cyprus",
"countryValue": "Cyprus",
"countryCode": "CY"
},
{
"label": "Las Vegas",
"value": "Las Vegas",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Lausanne",
"value": "Lausanne",
"geoCode": {
"latitude": "46.516",
"longitude": "6.63282"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Lhaviyani Atoll",
"value": "Lhaviyani Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Lisbon",
"value": "Lisbon",
"geoCode": {
"latitude": "38.71666667",
"longitude": "-9.16666667"
},
"countryLabel": "Portugal",
"countryValue": "Portugal",
"countryCode": "PT"
},
{
"label": "Lisbon",
"value": "Lisbon",
"geoCode": {
"latitude": "38.72635",
"longitude": "-9.14843"
},
"countryLabel": "Portugal",
"countryValue": "Portugal",
"countryCode": "PT"
},
{
"label": "Liverpool",
"value": "Liverpool",
"geoCode": {
"latitude": "53.41058",
"longitude": "-2.97794"
},
"countryLabel": "United Kingdom",
"countryValue": "United Kingdom",
"countryCode": "GB"
},
{
"label": "London",
"value": "London",
"geoCode": {
"latitude": "51.50853",
"longitude": "-0.12574"
},
"countryLabel": "United Kingdom",
"countryValue": "United Kingdom",
"countryCode": "GB"
},
{
"label": "Los Angeles",
"value": "Los Angeles",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Luzern",
"value": "Luzern",
"geoCode": {
"latitude": "47.05048",
"longitude": "8.30635"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Lyon",
"value": "Lyon",
"geoCode": {
"latitude": "45.74846",
"longitude": "4.84671"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Madrid",
"value": "Madrid",
"geoCode": {
"latitude": "40.4165",
"longitude": "-3.70256"
},
"countryLabel": "Spain",
"countryValue": "Spain",
"countryCode": "ES"
},
{
"label": "Male",
"value": "Male",
"geoCode": {
"latitude": "4.17521",
"longitude": "73.50916"
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Marbella",
"value": "Marbella",
"geoCode": {
"latitude": "36.51543",
"longitude": "-4.88583"
},
"countryLabel": "Spain",
"countryValue": "Spain",
"countryCode": "ES"
},
{
"label": "Marseille",
"value": "Marseille",
"geoCode": {
"latitude": "43.29695",
"longitude": "5.38107"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Mauregard",
"value": "Mauregard",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Mecca",
"value": "Mecca",
"geoCode": {
"latitude": "21.4225",
"longitude": "39.82611111"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Mecca",
"value": "Mecca",
"geoCode": {
"latitude": "21.42664",
"longitude": "39.82563"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Medina",
"value": "Medina",
"geoCode": {
"latitude": "24.46861",
"longitude": "39.61417"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Melbourne",
"value": "Melbourne",
"geoCode": {
"latitude": "-37.814",
"longitude": "144.96332"
},
"countryLabel": "Australia",
"countryValue": "Australia",
"countryCode": "AU"
},
{
"label": "Milan",
"value": "Milan",
"geoCode": {
"latitude": "45.46427",
"longitude": "9.18951"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Modena",
"value": "Modena",
"geoCode": {
"latitude": "44.64783",
"longitude": "10.92539"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Monaco",
"value": "Monaco",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Monaco",
"countryValue": "Monaco",
"countryCode": "MC"
},
{
"label": "Montreal",
"value": "Montreal",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Canada",
"countryValue": "Canada",
"countryCode": "CA"
},
{
"label": "Montreux",
"value": "Montreux",
"geoCode": {
"latitude": "46.43301",
"longitude": "6.91143"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Morges",
"value": "Morges",
"geoCode": {
"latitude": "46.51127",
"longitude": "6.49854"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Moscow",
"value": "Moscow",
"geoCode": {
"latitude": "55.75222",
"longitude": "37.61556"
},
"countryLabel": "Russia",
"countryValue": "Russia",
"countryCode": "RU"
},
{
"label": "Mostar",
"value": "Mostar",
"geoCode": {
"latitude": "43.34333",
"longitude": "17.80806"
},
"countryLabel": "Bosnia And Herzegovina",
"countryValue": "Bosnia And Herzegovina",
"countryCode": "BA"
},
{
"label": "Mugla",
"value": "Mugla",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Munich",
"value": "Munich",
"geoCode": {
"latitude": "48.13743",
"longitude": "11.57549"
},
"countryLabel": "Germany",
"countryValue": "Germany",
"countryCode": "DE"
},
{
"label": "M√ωkonos",
"value": "M√ωkonos",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Greece",
"countryValue": "Greece",
"countryCode": "GR"
},
{
"label": "Nairobi",
"value": "Nairobi",
"geoCode": {
"latitude": "-1.28333",
"longitude": "36.81667"
},
"countryLabel": "Kenya",
"countryValue": "Kenya",
"countryCode": "KE"
},
{
"label": "Naples",
"value": "Naples",
"geoCode": {
"latitude": "40.85216",
"longitude": "14.26811"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "New York City",
"value": "New York City",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Nice",
"value": "Nice",
"geoCode": {
"latitude": "43.70313",
"longitude": "7.26608"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "North Male Atoll",
"value": "North Male Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Novosibirsk",
"value": "Novosibirsk",
"geoCode": {
"latitude": "55.0415",
"longitude": "82.9346"
},
"countryLabel": "Russia",
"countryValue": "Russia",
"countryCode": "RU"
},
{
"label": "Orlando",
"value": "Orlando",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Palermo",
"value": "Palermo",
"geoCode": {
"latitude": "37.81667",
"longitude": "13.58333"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Paphos",
"value": "Paphos",
"geoCode": {
"latitude": "34.77679",
"longitude": "32.42451"
},
"countryLabel": "Cyprus",
"countryValue": "Cyprus",
"countryCode": "CY"
},
{
"label": "Paris",
"value": "Paris",
"geoCode": {
"latitude": "48.8534",
"longitude": "2.3486"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Phuket",
"value": "Phuket",
"geoCode": {
"latitude": "7.89059",
"longitude": "98.3981"
},
"countryLabel": "Thailand",
"countryValue": "Thailand",
"countryCode": "TH"
},
{
"label": "Praslin Island",
"value": "Praslin Island",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Seychelles",
"countryValue": "Seychelles",
"countryCode": "SC"
},
{
"label": "Quarteira",
"value": "Quarteira",
"geoCode": {
"latitude": "37.06946",
"longitude": "-8.10064"
},
"countryLabel": "Portugal",
"countryValue": "Portugal",
"countryCode": "PT"
},
{
"label": "Rabat",
"value": "Rabat",
"geoCode": {
"latitude": "34.01325",
"longitude": "-6.83255"
},
"countryLabel": "Morocco",
"countryValue": "Morocco",
"countryCode": "MA"
},
{
"label": "Ras Al Khaimah",
"value": "Ras Al Khaimah",
"geoCode": {
"latitude": "25.46116",
"longitude": "56.04058"
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Riyadh",
"value": "Riyadh",
"geoCode": {
"latitude": "24.68773",
"longitude": "46.72185"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Rome",
"value": "Rome",
"geoCode": {
"latitude": "41.89193",
"longitude": "12.51133"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Ródos",
"value": "Ródos",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Greece",
"countryValue": "Greece",
"countryCode": "GR"
},
{
"label": "Saint Petersburg",
"value": "Saint Petersburg",
"geoCode": {
"latitude": "59.93863",
"longitude": "30.31413"
},
"countryLabel": "Russia",
"countryValue": "Russia",
"countryCode": "RU"
},
{
"label": "Saint-laurent-du-var",
"value": "Saint-laurent-du-var",
"geoCode": {
"latitude": "43.67323",
"longitude": "7.19"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Salzburg",
"value": "Salzburg",
"geoCode": {
"latitude": "47.79941",
"longitude": "13.04399"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Samedan",
"value": "Samedan",
"geoCode": {
"latitude": "46.53399",
"longitude": "9.87276"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "San Diego",
"value": "San Diego",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "San Francisco",
"value": "San Francisco",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "San José Del Cabo",
"value": "San José Del Cabo",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Mexico",
"countryValue": "Mexico",
"countryCode": "MX"
},
{
"label": "Santorini",
"value": "Santorini",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Greece",
"countryValue": "Greece",
"countryCode": "GR"
},
{
"label": "Sarajevo",
"value": "Sarajevo",
"geoCode": {
"latitude": "43.84864",
"longitude": "18.35644"
},
"countryLabel": "Bosnia And Herzegovina",
"countryValue": "Bosnia And Herzegovina",
"countryCode": "BA"
},
{
"label": "Sciacca",
"value": "Sciacca",
"geoCode": {
"latitude": "37.50693",
"longitude": "13.08399"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Seoul",
"value": "Seoul",
"geoCode": {
"latitude": "37.566",
"longitude": "126.9784"
},
"countryLabel": "South Korea",
"countryValue": "South Korea",
"countryCode": "KR"
},
{
"label": "Sharjah",
"value": "Sharjah",
"geoCode": {
"latitude": "25.33737",
"longitude": "55.41206"
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Sharm El Sheikh",
"value": "Sharm El Sheikh",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Siem Reap",
"value": "Siem Reap",
"geoCode": {
"latitude": "13.36179",
"longitude": "103.86056"
},
"countryLabel": "Cambodia",
"countryValue": "Cambodia",
"countryCode": "KH"
},
{
"label": "Sochi",
"value": "Sochi",
"geoCode": {
"latitude": "43.59917",
"longitude": "39.72569"
},
"countryLabel": "Russia",
"countryValue": "Russia",
"countryCode": "RU"
},
{
"label": "South Male Atoll",
"value": "South Male Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Stockholm",
"value": "Stockholm",
"geoCode": {
"latitude": "59.33258",
"longitude": "18.0649"
},
"countryLabel": "Sweden",
"countryValue": "Sweden",
"countryCode": "SE"
},
{
"label": "Sydney",
"value": "Sydney",
"geoCode": {
"latitude": "-33.86785",
"longitude": "151.20732"
},
"countryLabel": "Australia",
"countryValue": "Australia",
"countryCode": "AU"
},
{
"label": "Tampa",
"value": "Tampa",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Tangier",
"value": "Tangier",
"geoCode": {
"latitude": "35.76727",
"longitude": "-5.79975"
},
"countryLabel": "Morocco",
"countryValue": "Morocco",
"countryCode": "MA"
},
{
"label": "Tbilisi",
"value": "Tbilisi",
"geoCode": {
"latitude": "41.69411",
"longitude": "44.83368"
},
"countryLabel": "Georgia",
"countryValue": "Georgia",
"countryCode": "GE"
},
{
"label": "Tepoztl√°n",
"value": "Tepoztl√°n",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Mexico",
"countryValue": "Mexico",
"countryCode": "MX"
},
{
"label": "Toronto",
"value": "Toronto",
"geoCode": {
"latitude": "43.70011",
"longitude": "-79.4163"
},
"countryLabel": "Canada",
"countryValue": "Canada",
"countryCode": "CA"
},
{
"label": "Trabzon",
"value": "Trabzon",
"geoCode": {
"latitude": "41.005",
"longitude": "39.72694"
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Vancouver",
"value": "Vancouver",
"geoCode": {
"latitude": "49.24966",
"longitude": "-123.11934"
},
"countryLabel": "Canada",
"countryValue": "Canada",
"countryCode": "CA"
},
{
"label": "Venice",
"value": "Venice",
"geoCode": {
"latitude": "45.43713",
"longitude": "12.33265"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Versailles",
"value": "Versailles",
"geoCode": {
"latitude": "48.80359",
"longitude": "2.13424"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Vienna",
"value": "Vienna",
"geoCode": {
"latitude": "48.20849",
"longitude": "16.37208"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Villeneuve",
"value": "Villeneuve",
"geoCode": {
"latitude": "46.39869",
"longitude": "6.92654"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Viry-ch√¢tillon",
"value": "Viry-ch√¢tillon",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Washington",
"value": "Washington",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Yerevan",
"value": "Yerevan",
"geoCode": {
"latitude": "40.18111",
"longitude": "44.51361"
},
"countryLabel": "Armenia",
"countryValue": "Armenia",
"countryCode": "AM"
},
{
"label": "Zanzibar City",
"value": "Zanzibar City",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Tanzania",
"countryValue": "Tanzania",
"countryCode": "TZ"
},
{
"label": "Zell Am See",
"value": "Zell Am See",
"geoCode": {
"latitude": "47.32556",
"longitude": "12.79444"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Zermatt",
"value": "Zermatt",
"geoCode": {
"latitude": "46.01998",
"longitude": "7.74863"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Zurich",
"value": "Zurich",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
}
]
Scenario: [5.1:88]
To validate the response for cities api with geocode presence
ms: 953
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:03.240 karate.env system property was: null
20:57:03.241 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
77
Given headers req_headers
0
78
And url baseUrl
0
79
And path citiesApiUrl
1
80
And params lang
0
81
And params limittype
0
82
When method get
948
20:57:03.246 request:
1 > GET https://dev-consumer-api.crayondata.com/api/v3/list/cities?limit=10&lang=en
1 > Authorization: auth
1 > Content-Type: application/json
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
20:57:04.190 response time in milliseconds: 943
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:02 GMT
[{"label":"Phuket","value":"Phuket","geoCode":{"latitude":"7.89059","longitude":"98.3981"},"countryLabel":"Thailand","countryValue":"Thailand","countryCode":"TH"},{"label":"Abano Terme","value":"Abano Terme","geoCode":{"latitude":"45.35753","longitude":"11.78725"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Abu Dhabi","value":"Abu Dhabi","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Aigle","value":"Aigle","geoCode":{"latitude":"46.3181","longitude":"6.96457"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Ajman","value":"Ajman","geoCode":{"latitude":"25.40328","longitude":"55.52341"},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Al Ain","value":"Al Ain","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Alanya","value":"Alanya","geoCode":{"latitude":"36.54375","longitude":"31.99982"},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Albufeira","value":"Albufeira","geoCode":{"latitude":"37.08819","longitude":"-8.2503"},"countryLabel":"Portugal","countryValue":"Portugal","countryCode":"PT"},{"label":"Alexandria","value":"Alexandria","geoCode":{"latitude":"31.20176","longitude":"29.91582"},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Alif Dhaal Atoll","value":"Alif Dhaal Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Amman","value":"Amman","geoCode":{"latitude":"31.95522","longitude":"35.94503"},"countryLabel":"Jordan","countryValue":"Jordan","countryCode":"JO"},{"label":"Amsterdam","value":"Amsterdam","geoCode":{"latitude":"52.37403","longitude":"4.88969"},"countryLabel":"Netherlands","countryValue":"Netherlands","countryCode":"NL"},{"label":"Annecy","value":"Annecy","geoCode":{"latitude":"45.90878","longitude":"6.12565"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Antalya","value":"Antalya","geoCode":{"latitude":"36.90812","longitude":"30.69556"},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Arlington","value":"Arlington","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Aswan","value":"Aswan","geoCode":{"latitude":"24.09082","longitude":"32.89942"},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Athens","value":"Athens","geoCode":{"latitude":"37.98376","longitude":"23.72784"},"countryLabel":"Greece","countryValue":"Greece","countryCode":"GR"},{"label":"Athens","value":"Athens","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Baa Atoll","value":"Baa Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Bad Hofgastein","value":"Bad Hofgastein","geoCode":{"latitude":"47.17274","longitude":"13.09871"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Baku","value":"Baku","geoCode":{"latitude":"40.37767","longitude":"49.89201"},"countryLabel":"Azerbaijan","countryValue":"Azerbaijan","countryCode":"AZ"},{"label":"Bangkok","value":"Bangkok","geoCode":{"latitude":"13.75398","longitude":"100.50144"},"countryLabel":"Thailand","countryValue":"Thailand","countryCode":"TH"},{"label":"Barcelona","value":"Barcelona","geoCode":{"latitude":"41.38879","longitude":"2.15899"},"countryLabel":"Spain","countryValue":"Spain","countryCode":"ES"},{"label":"Basel","value":"Basel","geoCode":{"latitude":"47.554722","longitude":"7.590556"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Belgrade","value":"Belgrade","geoCode":{"latitude":"44.80401","longitude":"20.46513"},"countryLabel":"Serbia","countryValue":"Serbia","countryCode":"RS"},{"label":"Beni Magd√ªl","value":"Beni Magd√ªl","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Berlin","value":"Berlin","geoCode":{"latitude":"52.52437","longitude":"13.41053"},"countryLabel":"Germany","countryValue":"Germany","countryCode":"DE"},{"label":"Bern","value":"Bern","geoCode":{"latitude":"46.94809","longitude":"7.44744"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Birmingham","value":"Birmingham","geoCode":{"latitude":"52.48142","longitude":"-1.89983"},"countryLabel":"United Kingdom","countryValue":"United Kingdom","countryCode":"GB"},{"label":"Blagnac","value":"Blagnac","geoCode":{"latitude":"43.63276","longitude":"1.39399"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Buraimi","value":"Buraimi","geoCode":{"latitude":"24.225058","longitude":"55.76629"},"countryLabel":"Oman","countryValue":"Oman","countryCode":"AE"},{"label":"Bursa","value":"Bursa","geoCode":{"latitude":"40.19559","longitude":"29.06013"},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Cabo San Lucas","value":"Cabo San Lucas","geoCode":{"latitude":"22.89088","longitude":"-109.91238"},"countryLabel":"Mexico","countryValue":"Mexico","countryCode":"MX"},{"label":"Caen","value":"Caen","geoCode":{"latitude":"49.18585","longitude":"-0.35912"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Cairo","value":"Cairo","geoCode":{"latitude":"30.06263","longitude":"31.24967"},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Cannes","value":"Cannes","geoCode":{"latitude":"43.55135","longitude":"7.01275"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Casablanca","value":"Casablanca","geoCode":{"latitude":"33.5884","longitude":"-7.55785"},"countryLabel":"Morocco","countryValue":"Morocco","countryCode":"MA"},{"label":"Catania","value":"Catania","geoCode":{"latitude":"37.47169","longitude":"14.84731"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Chicago","value":"Chicago","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Como","value":"Como","geoCode":{"latitude":"45.80819","longitude":"9.0832"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Davos","value":"Davos","geoCode":{"latitude":"46.80429","longitude":"9.83723"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Divonne-les-bains","value":"Divonne-les-bains","geoCode":{"latitude":"46.3571","longitude":"6.13494"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Doha","value":"Doha","geoCode":{"latitude":"25.28545","longitude":"51.53096"},"countryLabel":"Qatar","countryValue":"Qatar","countryCode":"QA"},{"label":"Dorfgastein","value":"Dorfgastein","geoCode":{"latitude":"47.24172","longitude":"13.10223"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Dubai","value":"Dubai","geoCode":{"latitude":"25.0657","longitude":"55.17128"},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Dublin","value":"Dublin","geoCode":{"latitude":"53.33306","longitude":"-6.24889"},"countryLabel":"Ireland","countryValue":"Ireland","countryCode":"IE"},{"label":"Edinburgh","value":"Edinburgh","geoCode":{"latitude":"55.95206","longitude":"-3.19648"},"countryLabel":"United Kingdom","countryValue":"United Kingdom","countryCode":"GB"},{"label":"Engelberg","value":"Engelberg","geoCode":{"latitude":"46.82107","longitude":"8.40133"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Eureka","value":"Eureka","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Mexico","countryValue":"Mexico","countryCode":"MX"},{"label":"Florence","value":"Florence","geoCode":{"latitude":"43.77925","longitude":"11.24626"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Fujairah","value":"Fujairah","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Geneva","value":"Geneva","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Graz","value":"Graz","geoCode":{"latitude":"47.06667","longitude":"15.45"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Grindelwald","value":"Grindelwald","geoCode":{"latitude":"46.62396","longitude":"8.03601"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"G√æza","value":"G√æza","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Heidelberg","value":"Heidelberg","geoCode":{"latitude":"49.40768","longitude":"8.69079"},"countryLabel":"Germany","countryValue":"Germany","countryCode":"DE"},{"label":"Hong Kong","value":"Hong Kong","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Hong Kong","countryValue":"Hong Kong","countryCode":"HK"},{"label":"Hulhumale","value":"Hulhumale","geoCode":{"latitude":"4.21169","longitude":"73.54008"},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Hurghada","value":"Hurghada","geoCode":{"latitude":"27.25738","longitude":"33.81291"},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Interlaken","value":"Interlaken","geoCode":{"latitude":"46.68387","longitude":"7.86638"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Istanbul","value":"Istanbul","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Jeddah","value":"Jeddah","geoCode":{"latitude":"21.54238","longitude":"39.19797"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Jeddah","value":"Jeddah","geoCode":{"latitude":"21.54277778","longitude":"39.17277778"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Karon","value":"Karon","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Thailand","countryValue":"Thailand","countryCode":"TH"},{"label":"Khobar","value":"Khobar","geoCode":{"latitude":"26.27944","longitude":"50.20833"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Koniz","value":"Koniz","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Kyiv","value":"Kyiv","geoCode":{"latitude":"50.45466","longitude":"30.5238"},"countryLabel":"Ukraine","countryValue":"Ukraine","countryCode":"UA"},{"label":"Kyrenia","value":"Kyrenia","geoCode":{"latitude":"35.33634","longitude":"33.31729"},"countryLabel":"Cyprus","countryValue":"Cyprus","countryCode":"CY"},{"label":"Larnaca","value":"Larnaca","geoCode":{"latitude":"34.92291","longitude":"33.6233"},"countryLabel":"Cyprus","countryValue":"Cyprus","countryCode":"CY"},{"label":"Las Vegas","value":"Las Vegas","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Lausanne","value":"Lausanne","geoCode":{"latitude":"46.516","longitude":"6.63282"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Lhaviyani Atoll","value":"Lhaviyani Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Lisbon","value":"Lisbon","geoCode":{"latitude":"38.71666667","longitude":"-9.16666667"},"countryLabel":"Portugal","countryValue":"Portugal","countryCode":"PT"},{"label":"Lisbon","value":"Lisbon","geoCode":{"latitude":"38.72635","longitude":"-9.14843"},"countryLabel":"Portugal","countryValue":"Portugal","countryCode":"PT"},{"label":"Liverpool","value":"Liverpool","geoCode":{"latitude":"53.41058","longitude":"-2.97794"},"countryLabel":"United Kingdom","countryValue":"United Kingdom","countryCode":"GB"},{"label":"London","value":"London","geoCode":{"latitude":"51.50853","longitude":"-0.12574"},"countryLabel":"United Kingdom","countryValue":"United Kingdom","countryCode":"GB"},{"label":"Los Angeles","value":"Los Angeles","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Luzern","value":"Luzern","geoCode":{"latitude":"47.05048","longitude":"8.30635"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Lyon","value":"Lyon","geoCode":{"latitude":"45.74846","longitude":"4.84671"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Madrid","value":"Madrid","geoCode":{"latitude":"40.4165","longitude":"-3.70256"},"countryLabel":"Spain","countryValue":"Spain","countryCode":"ES"},{"label":"Male","value":"Male","geoCode":{"latitude":"4.17521","longitude":"73.50916"},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Marbella","value":"Marbella","geoCode":{"latitude":"36.51543","longitude":"-4.88583"},"countryLabel":"Spain","countryValue":"Spain","countryCode":"ES"},{"label":"Marseille","value":"Marseille","geoCode":{"latitude":"43.29695","longitude":"5.38107"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Mauregard","value":"Mauregard","geoCode":{"latitude":null,"longitude":null},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Mecca","value":"Mecca","geoCode":{"latitude":"21.4225","longitude":"39.82611111"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Mecca","value":"Mecca","geoCode":{"latitude":"21.42664","longitude":"39.82563"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Medina","value":"Medina","geoCode":{"latitude":"24.46861","longitude":"39.61417"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Melbourne","value":"Melbourne","geoCode":{"latitude":"-37.814","longitude":"144.96332"},"countryLabel":"Australia","countryValue":"Australia","countryCode":"AU"},{"label":"Milan","value":"Milan","geoCode":{"latitude":"45.46427","longitude":"9.18951"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Modena","value":"Modena","geoCode":{"latitude":"44.64783","longitude":"10.92539"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Monaco","value":"Monaco","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Monaco","countryValue":"Monaco","countryCode":"MC"},{"label":"Montreal","value":"Montreal","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Canada","countryValue":"Canada","countryCode":"CA"},{"label":"Montreux","value":"Montreux","geoCode":{"latitude":"46.43301","longitude":"6.91143"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Morges","value":"Morges","geoCode":{"latitude":"46.51127","longitude":"6.49854"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Moscow","value":"Moscow","geoCode":{"latitude":"55.75222","longitude":"37.61556"},"countryLabel":"Russia","countryValue":"Russia","countryCode":"RU"},{"label":"Mostar","value":"Mostar","geoCode":{"latitude":"43.34333","longitude":"17.80806"},"countryLabel":"Bosnia And Herzegovina","countryValue":"Bosnia And Herzegovina","countryCode":"BA"},{"label":"Mugla","value":"Mugla","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Munich","value":"Munich","geoCode":{"latitude":"48.13743","longitude":"11.57549"},"countryLabel":"Germany","countryValue":"Germany","countryCode":"DE"},{"label":"M√ωkonos","value":"M√ωkonos","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Greece","countryValue":"Greece","countryCode":"GR"},{"label":"Nairobi","value":"Nairobi","geoCode":{"latitude":"-1.28333","longitude":"36.81667"},"countryLabel":"Kenya","countryValue":"Kenya","countryCode":"KE"},{"label":"Naples","value":"Naples","geoCode":{"latitude":"40.85216","longitude":"14.26811"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"New York City","value":"New York City","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Nice","value":"Nice","geoCode":{"latitude":"43.70313","longitude":"7.26608"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"North Male Atoll","value":"North Male Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Novosibirsk","value":"Novosibirsk","geoCode":{"latitude":"55.0415","longitude":"82.9346"},"countryLabel":"Russia","countryValue":"Russia","countryCode":"RU"},{"label":"Orlando","value":"Orlando","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Palermo","value":"Palermo","geoCode":{"latitude":"37.81667","longitude":"13.58333"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Paphos","value":"Paphos","geoCode":{"latitude":"34.77679","longitude":"32.42451"},"countryLabel":"Cyprus","countryValue":"Cyprus","countryCode":"CY"},{"label":"Paris","value":"Paris","geoCode":{"latitude":"48.8534","longitude":"2.3486"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Praslin Island","value":"Praslin Island","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Seychelles","countryValue":"Seychelles","countryCode":"SC"},{"label":"Quarteira","value":"Quarteira","geoCode":{"latitude":"37.06946","longitude":"-8.10064"},"countryLabel":"Portugal","countryValue":"Portugal","countryCode":"PT"},{"label":"Rabat","value":"Rabat","geoCode":{"latitude":"34.01325","longitude":"-6.83255"},"countryLabel":"Morocco","countryValue":"Morocco","countryCode":"MA"},{"label":"Ras Al Khaimah","value":"Ras Al Khaimah","geoCode":{"latitude":"25.46116","longitude":"56.04058"},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Riyadh","value":"Riyadh","geoCode":{"latitude":"24.68773","longitude":"46.72185"},"countryLabel":"Saudi Arabia","countryValue":"Saudi Arabia","countryCode":"SA"},{"label":"Rome","value":"Rome","geoCode":{"latitude":"41.89193","longitude":"12.51133"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"R√≥dos","value":"R√≥dos","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Greece","countryValue":"Greece","countryCode":"GR"},{"label":"Saint Petersburg","value":"Saint Petersburg","geoCode":{"latitude":"59.93863","longitude":"30.31413"},"countryLabel":"Russia","countryValue":"Russia","countryCode":"RU"},{"label":"Saint-laurent-du-var","value":"Saint-laurent-du-var","geoCode":{"latitude":"43.67323","longitude":"7.19"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Salzburg","value":"Salzburg","geoCode":{"latitude":"47.79941","longitude":"13.04399"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Samedan","value":"Samedan","geoCode":{"latitude":"46.53399","longitude":"9.87276"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"San Diego","value":"San Diego","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"San Francisco","value":"San Francisco","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"San Jos√© Del Cabo","value":"San Jos√© Del Cabo","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Mexico","countryValue":"Mexico","countryCode":"MX"},{"label":"Santorini","value":"Santorini","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Greece","countryValue":"Greece","countryCode":"GR"},{"label":"Sarajevo","value":"Sarajevo","geoCode":{"latitude":"43.84864","longitude":"18.35644"},"countryLabel":"Bosnia And Herzegovina","countryValue":"Bosnia And Herzegovina","countryCode":"BA"},{"label":"Sciacca","value":"Sciacca","geoCode":{"latitude":"37.50693","longitude":"13.08399"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Seoul","value":"Seoul","geoCode":{"latitude":"37.566","longitude":"126.9784"},"countryLabel":"South Korea","countryValue":"South Korea","countryCode":"KR"},{"label":"Sharjah","value":"Sharjah","geoCode":{"latitude":"25.33737","longitude":"55.41206"},"countryLabel":"United Arab Emirates","countryValue":"United Arab Emirates","countryCode":"AE"},{"label":"Sharm El Sheikh","value":"Sharm El Sheikh","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Egypt","countryValue":"Egypt","countryCode":"EG"},{"label":"Siem Reap","value":"Siem Reap","geoCode":{"latitude":"13.36179","longitude":"103.86056"},"countryLabel":"Cambodia","countryValue":"Cambodia","countryCode":"KH"},{"label":"Sochi","value":"Sochi","geoCode":{"latitude":"43.59917","longitude":"39.72569"},"countryLabel":"Russia","countryValue":"Russia","countryCode":"RU"},{"label":"South Male Atoll","value":"South Male Atoll","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Maldives","countryValue":"Maldives","countryCode":"MV"},{"label":"Stockholm","value":"Stockholm","geoCode":{"latitude":"59.33258","longitude":"18.0649"},"countryLabel":"Sweden","countryValue":"Sweden","countryCode":"SE"},{"label":"Sydney","value":"Sydney","geoCode":{"latitude":"-33.86785","longitude":"151.20732"},"countryLabel":"Australia","countryValue":"Australia","countryCode":"AU"},{"label":"Tampa","value":"Tampa","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Tangier","value":"Tangier","geoCode":{"latitude":"35.76727","longitude":"-5.79975"},"countryLabel":"Morocco","countryValue":"Morocco","countryCode":"MA"},{"label":"Tbilisi","value":"Tbilisi","geoCode":{"latitude":"41.69411","longitude":"44.83368"},"countryLabel":"Georgia","countryValue":"Georgia","countryCode":"GE"},{"label":"Tepoztl√°n","value":"Tepoztl√°n","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Mexico","countryValue":"Mexico","countryCode":"MX"},{"label":"Toronto","value":"Toronto","geoCode":{"latitude":"43.70011","longitude":"-79.4163"},"countryLabel":"Canada","countryValue":"Canada","countryCode":"CA"},{"label":"Trabzon","value":"Trabzon","geoCode":{"latitude":"41.005","longitude":"39.72694"},"countryLabel":"Turkey","countryValue":"Turkey","countryCode":"TR"},{"label":"Vancouver","value":"Vancouver","geoCode":{"latitude":"49.24966","longitude":"-123.11934"},"countryLabel":"Canada","countryValue":"Canada","countryCode":"CA"},{"label":"Venice","value":"Venice","geoCode":{"latitude":"45.43713","longitude":"12.33265"},"countryLabel":"Italy","countryValue":"Italy","countryCode":"IT"},{"label":"Versailles","value":"Versailles","geoCode":{"latitude":"48.80359","longitude":"2.13424"},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Vienna","value":"Vienna","geoCode":{"latitude":"48.20849","longitude":"16.37208"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Villeneuve","value":"Villeneuve","geoCode":{"latitude":"46.39869","longitude":"6.92654"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Viry-ch√¢tillon","value":"Viry-ch√¢tillon","geoCode":{"latitude":null,"longitude":null},"countryLabel":"France","countryValue":"France","countryCode":"FR"},{"label":"Washington","value":"Washington","geoCode":{"latitude":null,"longitude":null},"countryLabel":"United States Of America","countryValue":"United States Of America","countryCode":"US"},{"label":"Yerevan","value":"Yerevan","geoCode":{"latitude":"40.18111","longitude":"44.51361"},"countryLabel":"Armenia","countryValue":"Armenia","countryCode":"AM"},{"label":"Zanzibar City","value":"Zanzibar City","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Tanzania","countryValue":"Tanzania","countryCode":"TZ"},{"label":"Zell Am See","value":"Zell Am See","geoCode":{"latitude":"47.32556","longitude":"12.79444"},"countryLabel":"Austria","countryValue":"Austria","countryCode":"AT"},{"label":"Zermatt","value":"Zermatt","geoCode":{"latitude":"46.01998","longitude":"7.74863"},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"},{"label":"Zurich","value":"Zurich","geoCode":{"latitude":null,"longitude":null},"countryLabel":"Switzerland","countryValue":"Switzerland","countryCode":"CH"}]
83
Then status 200
0
84
Then print response
4
20:57:04.195 [print] [
{
"label": "Phuket",
"value": "Phuket",
"geoCode": {
"latitude": "7.89059",
"longitude": "98.3981"
},
"countryLabel": "Thailand",
"countryValue": "Thailand",
"countryCode": "TH"
},
{
"label": "Abano Terme",
"value": "Abano Terme",
"geoCode": {
"latitude": "45.35753",
"longitude": "11.78725"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Abu Dhabi",
"value": "Abu Dhabi",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Aigle",
"value": "Aigle",
"geoCode": {
"latitude": "46.3181",
"longitude": "6.96457"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Ajman",
"value": "Ajman",
"geoCode": {
"latitude": "25.40328",
"longitude": "55.52341"
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Al Ain",
"value": "Al Ain",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Alanya",
"value": "Alanya",
"geoCode": {
"latitude": "36.54375",
"longitude": "31.99982"
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Albufeira",
"value": "Albufeira",
"geoCode": {
"latitude": "37.08819",
"longitude": "-8.2503"
},
"countryLabel": "Portugal",
"countryValue": "Portugal",
"countryCode": "PT"
},
{
"label": "Alexandria",
"value": "Alexandria",
"geoCode": {
"latitude": "31.20176",
"longitude": "29.91582"
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Alif Dhaal Atoll",
"value": "Alif Dhaal Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Amman",
"value": "Amman",
"geoCode": {
"latitude": "31.95522",
"longitude": "35.94503"
},
"countryLabel": "Jordan",
"countryValue": "Jordan",
"countryCode": "JO"
},
{
"label": "Amsterdam",
"value": "Amsterdam",
"geoCode": {
"latitude": "52.37403",
"longitude": "4.88969"
},
"countryLabel": "Netherlands",
"countryValue": "Netherlands",
"countryCode": "NL"
},
{
"label": "Annecy",
"value": "Annecy",
"geoCode": {
"latitude": "45.90878",
"longitude": "6.12565"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Antalya",
"value": "Antalya",
"geoCode": {
"latitude": "36.90812",
"longitude": "30.69556"
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Arlington",
"value": "Arlington",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Aswan",
"value": "Aswan",
"geoCode": {
"latitude": "24.09082",
"longitude": "32.89942"
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Athens",
"value": "Athens",
"geoCode": {
"latitude": "37.98376",
"longitude": "23.72784"
},
"countryLabel": "Greece",
"countryValue": "Greece",
"countryCode": "GR"
},
{
"label": "Athens",
"value": "Athens",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Baa Atoll",
"value": "Baa Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Bad Hofgastein",
"value": "Bad Hofgastein",
"geoCode": {
"latitude": "47.17274",
"longitude": "13.09871"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Baku",
"value": "Baku",
"geoCode": {
"latitude": "40.37767",
"longitude": "49.89201"
},
"countryLabel": "Azerbaijan",
"countryValue": "Azerbaijan",
"countryCode": "AZ"
},
{
"label": "Bangkok",
"value": "Bangkok",
"geoCode": {
"latitude": "13.75398",
"longitude": "100.50144"
},
"countryLabel": "Thailand",
"countryValue": "Thailand",
"countryCode": "TH"
},
{
"label": "Barcelona",
"value": "Barcelona",
"geoCode": {
"latitude": "41.38879",
"longitude": "2.15899"
},
"countryLabel": "Spain",
"countryValue": "Spain",
"countryCode": "ES"
},
{
"label": "Basel",
"value": "Basel",
"geoCode": {
"latitude": "47.554722",
"longitude": "7.590556"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Belgrade",
"value": "Belgrade",
"geoCode": {
"latitude": "44.80401",
"longitude": "20.46513"
},
"countryLabel": "Serbia",
"countryValue": "Serbia",
"countryCode": "RS"
},
{
"label": "Beni Magdûl",
"value": "Beni Magdûl",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Berlin",
"value": "Berlin",
"geoCode": {
"latitude": "52.52437",
"longitude": "13.41053"
},
"countryLabel": "Germany",
"countryValue": "Germany",
"countryCode": "DE"
},
{
"label": "Bern",
"value": "Bern",
"geoCode": {
"latitude": "46.94809",
"longitude": "7.44744"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Birmingham",
"value": "Birmingham",
"geoCode": {
"latitude": "52.48142",
"longitude": "-1.89983"
},
"countryLabel": "United Kingdom",
"countryValue": "United Kingdom",
"countryCode": "GB"
},
{
"label": "Blagnac",
"value": "Blagnac",
"geoCode": {
"latitude": "43.63276",
"longitude": "1.39399"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Buraimi",
"value": "Buraimi",
"geoCode": {
"latitude": "24.225058",
"longitude": "55.76629"
},
"countryLabel": "Oman",
"countryValue": "Oman",
"countryCode": "AE"
},
{
"label": "Bursa",
"value": "Bursa",
"geoCode": {
"latitude": "40.19559",
"longitude": "29.06013"
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Cabo San Lucas",
"value": "Cabo San Lucas",
"geoCode": {
"latitude": "22.89088",
"longitude": "-109.91238"
},
"countryLabel": "Mexico",
"countryValue": "Mexico",
"countryCode": "MX"
},
{
"label": "Caen",
"value": "Caen",
"geoCode": {
"latitude": "49.18585",
"longitude": "-0.35912"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Cairo",
"value": "Cairo",
"geoCode": {
"latitude": "30.06263",
"longitude": "31.24967"
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Cannes",
"value": "Cannes",
"geoCode": {
"latitude": "43.55135",
"longitude": "7.01275"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Casablanca",
"value": "Casablanca",
"geoCode": {
"latitude": "33.5884",
"longitude": "-7.55785"
},
"countryLabel": "Morocco",
"countryValue": "Morocco",
"countryCode": "MA"
},
{
"label": "Catania",
"value": "Catania",
"geoCode": {
"latitude": "37.47169",
"longitude": "14.84731"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Chicago",
"value": "Chicago",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Como",
"value": "Como",
"geoCode": {
"latitude": "45.80819",
"longitude": "9.0832"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Davos",
"value": "Davos",
"geoCode": {
"latitude": "46.80429",
"longitude": "9.83723"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Divonne-les-bains",
"value": "Divonne-les-bains",
"geoCode": {
"latitude": "46.3571",
"longitude": "6.13494"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Doha",
"value": "Doha",
"geoCode": {
"latitude": "25.28545",
"longitude": "51.53096"
},
"countryLabel": "Qatar",
"countryValue": "Qatar",
"countryCode": "QA"
},
{
"label": "Dorfgastein",
"value": "Dorfgastein",
"geoCode": {
"latitude": "47.24172",
"longitude": "13.10223"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Dubai",
"value": "Dubai",
"geoCode": {
"latitude": "25.0657",
"longitude": "55.17128"
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Dublin",
"value": "Dublin",
"geoCode": {
"latitude": "53.33306",
"longitude": "-6.24889"
},
"countryLabel": "Ireland",
"countryValue": "Ireland",
"countryCode": "IE"
},
{
"label": "Edinburgh",
"value": "Edinburgh",
"geoCode": {
"latitude": "55.95206",
"longitude": "-3.19648"
},
"countryLabel": "United Kingdom",
"countryValue": "United Kingdom",
"countryCode": "GB"
},
{
"label": "Engelberg",
"value": "Engelberg",
"geoCode": {
"latitude": "46.82107",
"longitude": "8.40133"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Eureka",
"value": "Eureka",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Mexico",
"countryValue": "Mexico",
"countryCode": "MX"
},
{
"label": "Florence",
"value": "Florence",
"geoCode": {
"latitude": "43.77925",
"longitude": "11.24626"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Fujairah",
"value": "Fujairah",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Geneva",
"value": "Geneva",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Graz",
"value": "Graz",
"geoCode": {
"latitude": "47.06667",
"longitude": "15.45"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Grindelwald",
"value": "Grindelwald",
"geoCode": {
"latitude": "46.62396",
"longitude": "8.03601"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Gþza",
"value": "Gþza",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Heidelberg",
"value": "Heidelberg",
"geoCode": {
"latitude": "49.40768",
"longitude": "8.69079"
},
"countryLabel": "Germany",
"countryValue": "Germany",
"countryCode": "DE"
},
{
"label": "Hong Kong",
"value": "Hong Kong",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Hong Kong",
"countryValue": "Hong Kong",
"countryCode": "HK"
},
{
"label": "Hulhumale",
"value": "Hulhumale",
"geoCode": {
"latitude": "4.21169",
"longitude": "73.54008"
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Hurghada",
"value": "Hurghada",
"geoCode": {
"latitude": "27.25738",
"longitude": "33.81291"
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Interlaken",
"value": "Interlaken",
"geoCode": {
"latitude": "46.68387",
"longitude": "7.86638"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Istanbul",
"value": "Istanbul",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Jeddah",
"value": "Jeddah",
"geoCode": {
"latitude": "21.54238",
"longitude": "39.19797"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Jeddah",
"value": "Jeddah",
"geoCode": {
"latitude": "21.54277778",
"longitude": "39.17277778"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Karon",
"value": "Karon",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Thailand",
"countryValue": "Thailand",
"countryCode": "TH"
},
{
"label": "Khobar",
"value": "Khobar",
"geoCode": {
"latitude": "26.27944",
"longitude": "50.20833"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Koniz",
"value": "Koniz",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Kyiv",
"value": "Kyiv",
"geoCode": {
"latitude": "50.45466",
"longitude": "30.5238"
},
"countryLabel": "Ukraine",
"countryValue": "Ukraine",
"countryCode": "UA"
},
{
"label": "Kyrenia",
"value": "Kyrenia",
"geoCode": {
"latitude": "35.33634",
"longitude": "33.31729"
},
"countryLabel": "Cyprus",
"countryValue": "Cyprus",
"countryCode": "CY"
},
{
"label": "Larnaca",
"value": "Larnaca",
"geoCode": {
"latitude": "34.92291",
"longitude": "33.6233"
},
"countryLabel": "Cyprus",
"countryValue": "Cyprus",
"countryCode": "CY"
},
{
"label": "Las Vegas",
"value": "Las Vegas",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Lausanne",
"value": "Lausanne",
"geoCode": {
"latitude": "46.516",
"longitude": "6.63282"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Lhaviyani Atoll",
"value": "Lhaviyani Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Lisbon",
"value": "Lisbon",
"geoCode": {
"latitude": "38.71666667",
"longitude": "-9.16666667"
},
"countryLabel": "Portugal",
"countryValue": "Portugal",
"countryCode": "PT"
},
{
"label": "Lisbon",
"value": "Lisbon",
"geoCode": {
"latitude": "38.72635",
"longitude": "-9.14843"
},
"countryLabel": "Portugal",
"countryValue": "Portugal",
"countryCode": "PT"
},
{
"label": "Liverpool",
"value": "Liverpool",
"geoCode": {
"latitude": "53.41058",
"longitude": "-2.97794"
},
"countryLabel": "United Kingdom",
"countryValue": "United Kingdom",
"countryCode": "GB"
},
{
"label": "London",
"value": "London",
"geoCode": {
"latitude": "51.50853",
"longitude": "-0.12574"
},
"countryLabel": "United Kingdom",
"countryValue": "United Kingdom",
"countryCode": "GB"
},
{
"label": "Los Angeles",
"value": "Los Angeles",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Luzern",
"value": "Luzern",
"geoCode": {
"latitude": "47.05048",
"longitude": "8.30635"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Lyon",
"value": "Lyon",
"geoCode": {
"latitude": "45.74846",
"longitude": "4.84671"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Madrid",
"value": "Madrid",
"geoCode": {
"latitude": "40.4165",
"longitude": "-3.70256"
},
"countryLabel": "Spain",
"countryValue": "Spain",
"countryCode": "ES"
},
{
"label": "Male",
"value": "Male",
"geoCode": {
"latitude": "4.17521",
"longitude": "73.50916"
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Marbella",
"value": "Marbella",
"geoCode": {
"latitude": "36.51543",
"longitude": "-4.88583"
},
"countryLabel": "Spain",
"countryValue": "Spain",
"countryCode": "ES"
},
{
"label": "Marseille",
"value": "Marseille",
"geoCode": {
"latitude": "43.29695",
"longitude": "5.38107"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Mauregard",
"value": "Mauregard",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Mecca",
"value": "Mecca",
"geoCode": {
"latitude": "21.4225",
"longitude": "39.82611111"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Mecca",
"value": "Mecca",
"geoCode": {
"latitude": "21.42664",
"longitude": "39.82563"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Medina",
"value": "Medina",
"geoCode": {
"latitude": "24.46861",
"longitude": "39.61417"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Melbourne",
"value": "Melbourne",
"geoCode": {
"latitude": "-37.814",
"longitude": "144.96332"
},
"countryLabel": "Australia",
"countryValue": "Australia",
"countryCode": "AU"
},
{
"label": "Milan",
"value": "Milan",
"geoCode": {
"latitude": "45.46427",
"longitude": "9.18951"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Modena",
"value": "Modena",
"geoCode": {
"latitude": "44.64783",
"longitude": "10.92539"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Monaco",
"value": "Monaco",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Monaco",
"countryValue": "Monaco",
"countryCode": "MC"
},
{
"label": "Montreal",
"value": "Montreal",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Canada",
"countryValue": "Canada",
"countryCode": "CA"
},
{
"label": "Montreux",
"value": "Montreux",
"geoCode": {
"latitude": "46.43301",
"longitude": "6.91143"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Morges",
"value": "Morges",
"geoCode": {
"latitude": "46.51127",
"longitude": "6.49854"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Moscow",
"value": "Moscow",
"geoCode": {
"latitude": "55.75222",
"longitude": "37.61556"
},
"countryLabel": "Russia",
"countryValue": "Russia",
"countryCode": "RU"
},
{
"label": "Mostar",
"value": "Mostar",
"geoCode": {
"latitude": "43.34333",
"longitude": "17.80806"
},
"countryLabel": "Bosnia And Herzegovina",
"countryValue": "Bosnia And Herzegovina",
"countryCode": "BA"
},
{
"label": "Mugla",
"value": "Mugla",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Munich",
"value": "Munich",
"geoCode": {
"latitude": "48.13743",
"longitude": "11.57549"
},
"countryLabel": "Germany",
"countryValue": "Germany",
"countryCode": "DE"
},
{
"label": "M√ωkonos",
"value": "M√ωkonos",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Greece",
"countryValue": "Greece",
"countryCode": "GR"
},
{
"label": "Nairobi",
"value": "Nairobi",
"geoCode": {
"latitude": "-1.28333",
"longitude": "36.81667"
},
"countryLabel": "Kenya",
"countryValue": "Kenya",
"countryCode": "KE"
},
{
"label": "Naples",
"value": "Naples",
"geoCode": {
"latitude": "40.85216",
"longitude": "14.26811"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "New York City",
"value": "New York City",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Nice",
"value": "Nice",
"geoCode": {
"latitude": "43.70313",
"longitude": "7.26608"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "North Male Atoll",
"value": "North Male Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Novosibirsk",
"value": "Novosibirsk",
"geoCode": {
"latitude": "55.0415",
"longitude": "82.9346"
},
"countryLabel": "Russia",
"countryValue": "Russia",
"countryCode": "RU"
},
{
"label": "Orlando",
"value": "Orlando",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Palermo",
"value": "Palermo",
"geoCode": {
"latitude": "37.81667",
"longitude": "13.58333"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Paphos",
"value": "Paphos",
"geoCode": {
"latitude": "34.77679",
"longitude": "32.42451"
},
"countryLabel": "Cyprus",
"countryValue": "Cyprus",
"countryCode": "CY"
},
{
"label": "Paris",
"value": "Paris",
"geoCode": {
"latitude": "48.8534",
"longitude": "2.3486"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Praslin Island",
"value": "Praslin Island",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Seychelles",
"countryValue": "Seychelles",
"countryCode": "SC"
},
{
"label": "Quarteira",
"value": "Quarteira",
"geoCode": {
"latitude": "37.06946",
"longitude": "-8.10064"
},
"countryLabel": "Portugal",
"countryValue": "Portugal",
"countryCode": "PT"
},
{
"label": "Rabat",
"value": "Rabat",
"geoCode": {
"latitude": "34.01325",
"longitude": "-6.83255"
},
"countryLabel": "Morocco",
"countryValue": "Morocco",
"countryCode": "MA"
},
{
"label": "Ras Al Khaimah",
"value": "Ras Al Khaimah",
"geoCode": {
"latitude": "25.46116",
"longitude": "56.04058"
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Riyadh",
"value": "Riyadh",
"geoCode": {
"latitude": "24.68773",
"longitude": "46.72185"
},
"countryLabel": "Saudi Arabia",
"countryValue": "Saudi Arabia",
"countryCode": "SA"
},
{
"label": "Rome",
"value": "Rome",
"geoCode": {
"latitude": "41.89193",
"longitude": "12.51133"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Ródos",
"value": "Ródos",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Greece",
"countryValue": "Greece",
"countryCode": "GR"
},
{
"label": "Saint Petersburg",
"value": "Saint Petersburg",
"geoCode": {
"latitude": "59.93863",
"longitude": "30.31413"
},
"countryLabel": "Russia",
"countryValue": "Russia",
"countryCode": "RU"
},
{
"label": "Saint-laurent-du-var",
"value": "Saint-laurent-du-var",
"geoCode": {
"latitude": "43.67323",
"longitude": "7.19"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Salzburg",
"value": "Salzburg",
"geoCode": {
"latitude": "47.79941",
"longitude": "13.04399"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Samedan",
"value": "Samedan",
"geoCode": {
"latitude": "46.53399",
"longitude": "9.87276"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "San Diego",
"value": "San Diego",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "San Francisco",
"value": "San Francisco",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "San José Del Cabo",
"value": "San José Del Cabo",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Mexico",
"countryValue": "Mexico",
"countryCode": "MX"
},
{
"label": "Santorini",
"value": "Santorini",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Greece",
"countryValue": "Greece",
"countryCode": "GR"
},
{
"label": "Sarajevo",
"value": "Sarajevo",
"geoCode": {
"latitude": "43.84864",
"longitude": "18.35644"
},
"countryLabel": "Bosnia And Herzegovina",
"countryValue": "Bosnia And Herzegovina",
"countryCode": "BA"
},
{
"label": "Sciacca",
"value": "Sciacca",
"geoCode": {
"latitude": "37.50693",
"longitude": "13.08399"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Seoul",
"value": "Seoul",
"geoCode": {
"latitude": "37.566",
"longitude": "126.9784"
},
"countryLabel": "South Korea",
"countryValue": "South Korea",
"countryCode": "KR"
},
{
"label": "Sharjah",
"value": "Sharjah",
"geoCode": {
"latitude": "25.33737",
"longitude": "55.41206"
},
"countryLabel": "United Arab Emirates",
"countryValue": "United Arab Emirates",
"countryCode": "AE"
},
{
"label": "Sharm El Sheikh",
"value": "Sharm El Sheikh",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Egypt",
"countryValue": "Egypt",
"countryCode": "EG"
},
{
"label": "Siem Reap",
"value": "Siem Reap",
"geoCode": {
"latitude": "13.36179",
"longitude": "103.86056"
},
"countryLabel": "Cambodia",
"countryValue": "Cambodia",
"countryCode": "KH"
},
{
"label": "Sochi",
"value": "Sochi",
"geoCode": {
"latitude": "43.59917",
"longitude": "39.72569"
},
"countryLabel": "Russia",
"countryValue": "Russia",
"countryCode": "RU"
},
{
"label": "South Male Atoll",
"value": "South Male Atoll",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Maldives",
"countryValue": "Maldives",
"countryCode": "MV"
},
{
"label": "Stockholm",
"value": "Stockholm",
"geoCode": {
"latitude": "59.33258",
"longitude": "18.0649"
},
"countryLabel": "Sweden",
"countryValue": "Sweden",
"countryCode": "SE"
},
{
"label": "Sydney",
"value": "Sydney",
"geoCode": {
"latitude": "-33.86785",
"longitude": "151.20732"
},
"countryLabel": "Australia",
"countryValue": "Australia",
"countryCode": "AU"
},
{
"label": "Tampa",
"value": "Tampa",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Tangier",
"value": "Tangier",
"geoCode": {
"latitude": "35.76727",
"longitude": "-5.79975"
},
"countryLabel": "Morocco",
"countryValue": "Morocco",
"countryCode": "MA"
},
{
"label": "Tbilisi",
"value": "Tbilisi",
"geoCode": {
"latitude": "41.69411",
"longitude": "44.83368"
},
"countryLabel": "Georgia",
"countryValue": "Georgia",
"countryCode": "GE"
},
{
"label": "Tepoztl√°n",
"value": "Tepoztl√°n",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Mexico",
"countryValue": "Mexico",
"countryCode": "MX"
},
{
"label": "Toronto",
"value": "Toronto",
"geoCode": {
"latitude": "43.70011",
"longitude": "-79.4163"
},
"countryLabel": "Canada",
"countryValue": "Canada",
"countryCode": "CA"
},
{
"label": "Trabzon",
"value": "Trabzon",
"geoCode": {
"latitude": "41.005",
"longitude": "39.72694"
},
"countryLabel": "Turkey",
"countryValue": "Turkey",
"countryCode": "TR"
},
{
"label": "Vancouver",
"value": "Vancouver",
"geoCode": {
"latitude": "49.24966",
"longitude": "-123.11934"
},
"countryLabel": "Canada",
"countryValue": "Canada",
"countryCode": "CA"
},
{
"label": "Venice",
"value": "Venice",
"geoCode": {
"latitude": "45.43713",
"longitude": "12.33265"
},
"countryLabel": "Italy",
"countryValue": "Italy",
"countryCode": "IT"
},
{
"label": "Versailles",
"value": "Versailles",
"geoCode": {
"latitude": "48.80359",
"longitude": "2.13424"
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Vienna",
"value": "Vienna",
"geoCode": {
"latitude": "48.20849",
"longitude": "16.37208"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Villeneuve",
"value": "Villeneuve",
"geoCode": {
"latitude": "46.39869",
"longitude": "6.92654"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Viry-ch√¢tillon",
"value": "Viry-ch√¢tillon",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "France",
"countryValue": "France",
"countryCode": "FR"
},
{
"label": "Washington",
"value": "Washington",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "United States Of America",
"countryValue": "United States Of America",
"countryCode": "US"
},
{
"label": "Yerevan",
"value": "Yerevan",
"geoCode": {
"latitude": "40.18111",
"longitude": "44.51361"
},
"countryLabel": "Armenia",
"countryValue": "Armenia",
"countryCode": "AM"
},
{
"label": "Zanzibar City",
"value": "Zanzibar City",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Tanzania",
"countryValue": "Tanzania",
"countryCode": "TZ"
},
{
"label": "Zell Am See",
"value": "Zell Am See",
"geoCode": {
"latitude": "47.32556",
"longitude": "12.79444"
},
"countryLabel": "Austria",
"countryValue": "Austria",
"countryCode": "AT"
},
{
"label": "Zermatt",
"value": "Zermatt",
"geoCode": {
"latitude": "46.01998",
"longitude": "7.74863"
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
},
{
"label": "Zurich",
"value": "Zurich",
"geoCode": {
"latitude": null,
"longitude": null
},
"countryLabel": "Switzerland",
"countryValue": "Switzerland",
"countryCode": "CH"
}
]
Scenario: [6.1:103]
To validate the response for categories api
ms: 1014
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
1
20:57:03.487 karate.env system property was: null
20:57:03.488 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
93
Given headers req_headers
0
94
And url baseUrl
0
95
And path categoriesApiUrl
1
96
And params lang
0
97
When method get
1009
20:57:03.493 request:
1 > GET https://dev-consumer-api.crayondata.com/api/v3/list/category/tags?lang=en
1 > Authorization: auth
1 > Content-Type: application/json
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
20:57:04.499 response time in milliseconds: 1006
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:04 GMT
{"dining":[{"value":null,"label":"restaurant"},{"value":null,"label":"cafe"},{"value":null,"label":"food-truck"},{"value":null,"label":"food-court"},{"value":null,"label":"food-stall"},{"value":null,"label":"bars-and-pubs"},{"value":null,"label":"sports-bar"},{"value":null,"label":"club"},{"value":null,"label":"afghani-cuisine"},{"value":null,"label":"african-cuisine"},{"value":null,"label":"american-cuisine"},{"value":null,"label":"andhra-cuisine"},{"value":null,"label":"arabian-cuisine"},{"value":null,"label":"asian-cuisine"},{"value":null,"label":"assamese-cuisine"},{"value":null,"label":"australian-cuisine"},{"value":null,"label":"awadhi-cuisine"},{"value":null,"label":"barbeque"},{"value":null,"label":"belgian-cuisine"},{"value":null,"label":"bengali-cuisine"},{"value":null,"label":"brazilian-cuisine"},{"value":null,"label":"british-cuisine"},{"value":null,"label":"burmese-cuisine"},{"value":null,"label":"canadian-cuisine"},{"value":null,"label":"cantonese-cuisine"},{"value":null,"label":"carribean-cuisine"},{"value":null,"label":"chettinad-cuisine"},{"value":null,"label":"chilean-cuisine"},{"value":null,"label":"chinese-cuisine"},{"value":null,"label":"continental-cuisine"},{"value":null,"label":"cuban-cuisine"},{"value":null,"label":"dutch-cuisine"},{"value":null,"label":"egyptian-cuisine"},{"value":null,"label":"ethiopian-cuisine"},{"value":null,"label":"european-cuisine"},{"value":null,"label":"filipino-cuisine"},{"value":null,"label":"french-cuisine"},{"value":null,"label":"fusion-cuisine"},{"value":null,"label":"fusion-cuisine-indo-chinese-fusion"},{"value":null,"label":"german-cuisine"},{"value":null,"label":"goan-cuisine"},{"value":null,"label":"greece-cuisine"},{"value":null,"label":"gujarati-cuisine"},{"value":null,"label":"hawaian-cuisine"},{"value":null,"label":"hyderabad-cuisine"},{"value":null,"label":"indian-cuisine"},{"value":null,"label":"indonesian-cuisine"},{"value":null,"label":"international-cuisine"},{"value":null,"label":"iranian-cuisine"},{"value":null,"label":"irish-cuisine"},{"value":null,"label":"italian-cuisine"},{"value":null,"label":"jain-food"},{"value":null,"label":"jamaican-cuisine"},{"value":null,"label":"japanese-cuisine"},{"value":null,"label":"kashmiri-cusine"},{"value":null,"label":"kerala-cuisine"},{"value":null,"label":"konkan-cuisine"},{"value":null,"label":"korean-cuisine"},{"value":null,"label":"latin-american-cuisine"},{"value":null,"label":"latin-cuisine"},{"value":null,"label":"lebanese-cuisine"},{"value":null,"label":"local-cuisine"},{"value":null,"label":"maharastrian-cuisine"},{"value":null,"label":"malaysian-cuisine"},{"value":null,"label":"malwani-cuisine"},{"value":null,"label":"mandi-cuisine"},{"value":null,"label":"mangalorean-cuisine"},{"value":null,"label":"mediterranean-cuisine"},{"value":null,"label":"mexican-cuisine"},{"value":null,"label":"middle-eastern-cuisine"},{"value":null,"label":"moroccan-cuisine"},{"value":null,"label":"multi-cuisine"},{"value":null,"label":"nepalese-cuisine"},{"value":null,"label":"north-indian-cuisine"},{"value":null,"label":"odia-cuisine"},{"value":null,"label":"pakistani-cuisine"},{"value":null,"label":"peranakan-cuisine"},{"value":null,"label":"persian-cuisine"},{"value":null,"label":"peruvian-cuisine"},{"value":null,"label":"philippine-cuisine"},{"value":null,"label":"portuguese-cuisine"},{"value":null,"label":"punjabi-cuisine"},{"value":null,"label":"rajasthani-cuisine"},{"value":null,"label":"russian-cuisine"},{"value":null,"label":"scottish-cuisine"},{"value":null,"label":"singaporean-cuisine"},{"value":null,"label":"south-indian-cuisine"},{"value":null,"label":"spanish-cuisine"},{"value":null,"label":"sri-lankan-cuisine"},{"value":null,"label":"swiss-cusine"},{"value":null,"label":"syrian-cuisine"},{"value":null,"label":"taiwanese-cuisine"},{"value":null,"label":"texmex-cuisine"},{"value":null,"label":"thai-cuisine"},{"value":null,"label":"tibetian-cuisine"},{"value":null,"label":"turkish-cuisine"},{"value":null,"label":"vietnamese-cuisine"},{"value":null,"label":"western-cuisine"},{"value":null,"label":"general"},{"value":null,"label":"fast-food"},{"value":null,"label":"fast-casual-dining"},{"value":null,"label":"casual-dining"},{"value":null,"label":"fine-dining"},{"value":null,"label":"luxury-dining"},{"value":null,"label":"bakery"},{"value":null,"label":"juice-bar"},{"value":null,"label":"dessert-parlour"},{"value":null,"label":"brewery"},{"value":null,"label":"vegetarian-restaurant"},{"value":null,"label":"vegan-restaurant"},{"value":null,"label":"quick-bites"},{"value":null,"label":"chain-outlet"},{"value":null,"label":"buffet"},{"value":null,"label":"themed-restaurant"},{"value":null,"label":"ladies-night"},{"value":null,"label":"breakfast"},{"value":null,"label":"brunch"},{"value":null,"label":"lunch"},{"value":null,"label":"afternoon-tea"},{"value":null,"label":"dinner"},{"value":null,"label":"supper"},{"value":null,"label":"all-day-breakfast"},{"value":null,"label":"lunch-and-dinner"},{"value":null,"label":"all-meals"},{"value":null,"label":"dine-with-a-view"},{"value":null,"label":"cakes"},{"value":null,"label":"chocolates"},{"value":null,"label":"cream-puffs"},{"value":null,"label":"cupcakes"},{"value":null,"label":"donuts"},{"value":null,"label":"pastries"},{"value":null,"label":"ice-cream"},{"value":null,"label":"frozen-yogurt"},{"value":null,"label":"waffles"},{"value":null,"label":"breads-and-pastries"},{"value":null,"label":"air-conditioned"},{"value":null,"label":"drive-thru"},{"value":null,"label":"games"},{"value":null,"label":"happy-hours"},{"value":null,"label":"highchair-available"},{"value":null,"label":"karaoke"},{"value":null,"label":"kids-play-area"},{"value":null,"label":"live-cooking"},{"value":null,"label":"live-music"},{"value":null,"label":"live-sports-screening"},{"value":null,"label":"live-entertainment"},{"value":null,"label":"outdoor-seating"},{"value":null,"label":"parking-available"},{"value":null,"label":"poolside-dining"},{"value":null,"label":"private-dining"},{"value":null,"label":"rooftop-dining"},{"value":null,"label":"serves-alcohol-full-bar"},{"value":null,"label":"smoking-area"},{"value":null,"label":"wheelchair-access"},{"value":null,"label":"wifi"},{"value":null,"label":"delivery-services"},{"value":null,"label":"booking-and-reservations"},{"value":null,"label":"catering-services"},{"value":null,"label":"24/7"},{"value":null,"label":"self-serve"},{"value":null,"label":"friendly-staff"},{"value":null,"label":"dine-in"},{"value":null,"label":"mobile-app"},{"value":null,"label":"take-away"},{"value":null,"label":"classical-design"},{"value":null,"label":"ethnic-design"},{"value":null,"label":"industrial-design"},{"value":null,"label":"country-design"},{"value":null,"label":"basic-design"},{"value":null,"label":"other-design"},{"value":null,"label":"large-group-friendly"},{"value":null,"label":"business-meeting"},{"value":null,"label":"couple-friendly"},{"value":null,"label":"vegetarian-friendly"},{"value":null,"label":"pet-friendly"},{"value":null,"label":"accepts-apple-pay"},{"value":null,"label":"accepts-android-pay"},{"value":null,"label":"mobile-payment"},{"value":null,"label":"cash-on-delivery"},{"value":null,"label":"cards-only"},{"value":null,"label":"premium"},{"value":null,"label":"average-pricing"},{"value":null,"label":"affordable"},{"value":null,"label":"steak-house"},{"value":null,"label":"gastropub"},{"value":null,"label":"greek-cuisine"},{"value":null,"label":"haute-cuisine"},{"value":null,"label":"nouvelle-cuisine"},{"value":null,"label":"halal"},{"value":null,"label":"kosher"},{"value":null,"label":"specialty-food-market"},{"value":null,"label":"late-night-dining"},{"value":null,"label":"dine-with-chef"},{"value":null,"label":"curry"},{"value":null,"label":"dim-sum"},{"value":null,"label":"noodles"},{"value":null,"label":"pasta"},{"value":null,"label":"pizza"},{"value":null,"label":"sushi"},{"value":null,"label":"tapas"},{"value":null,"label":"soups"},{"value":null,"label":"hamburgers"},{"value":null,"label":"salads"},{"value":null,"label":"sandwiches"},{"value":null,"label":"wraps-and-rolls"},{"value":null,"label":"meat"},{"value":null,"label":"poultry"},{"value":null,"label":"seafood"},{"value":null,"label":"vegetarian-friendly"},{"value":null,"label":"vegan"},{"value":null,"label":"juices"},{"value":null,"label":"smoothies"},{"value":null,"label":"beers"},{"value":null,"label":"cocktails"},{"value":null,"label":"coffee"},{"value":null,"label":"tea"},{"value":null,"label":"whiskeys"},{"value":null,"label":"wines"},{"value":null,"label":"hookah"},{"value":null,"label":"gluten-free"},{"value":null,"label":"signature-dish"},{"value":null,"label":"shepherd-pie"},{"value":null,"label":"eton-mess"},{"value":null,"label":"rum"},{"value":null,"label":"mocktails"},{"value":null,"label":"mousse"},{"value":null,"label":"celebrity-chef"},{"value":null,"label":"dance-floor"},{"value":null,"label":"banquet-hall"},{"value":null,"label":"infinity-pool"},{"value":null,"label":"validated-parking"},{"value":null,"label":"tv"},{"value":null,"label":"valet-parking"},{"value":null,"label":"online-order"},{"value":null,"label":"modern-design"},{"value":null,"label":"kid-friendly"},{"value":null,"label":"accepts-cards"},{"value":null,"label":"luxury"}]}
98
Then status 200
0
99
Then print response
3
20:57:04.503 [print] {
"dining": [
{
"value": null,
"label": "restaurant"
},
{
"value": null,
"label": "cafe"
},
{
"value": null,
"label": "food-truck"
},
{
"value": null,
"label": "food-court"
},
{
"value": null,
"label": "food-stall"
},
{
"value": null,
"label": "bars-and-pubs"
},
{
"value": null,
"label": "sports-bar"
},
{
"value": null,
"label": "club"
},
{
"value": null,
"label": "afghani-cuisine"
},
{
"value": null,
"label": "african-cuisine"
},
{
"value": null,
"label": "american-cuisine"
},
{
"value": null,
"label": "andhra-cuisine"
},
{
"value": null,
"label": "arabian-cuisine"
},
{
"value": null,
"label": "asian-cuisine"
},
{
"value": null,
"label": "assamese-cuisine"
},
{
"value": null,
"label": "australian-cuisine"
},
{
"value": null,
"label": "awadhi-cuisine"
},
{
"value": null,
"label": "barbeque"
},
{
"value": null,
"label": "belgian-cuisine"
},
{
"value": null,
"label": "bengali-cuisine"
},
{
"value": null,
"label": "brazilian-cuisine"
},
{
"value": null,
"label": "british-cuisine"
},
{
"value": null,
"label": "burmese-cuisine"
},
{
"value": null,
"label": "canadian-cuisine"
},
{
"value": null,
"label": "cantonese-cuisine"
},
{
"value": null,
"label": "carribean-cuisine"
},
{
"value": null,
"label": "chettinad-cuisine"
},
{
"value": null,
"label": "chilean-cuisine"
},
{
"value": null,
"label": "chinese-cuisine"
},
{
"value": null,
"label": "continental-cuisine"
},
{
"value": null,
"label": "cuban-cuisine"
},
{
"value": null,
"label": "dutch-cuisine"
},
{
"value": null,
"label": "egyptian-cuisine"
},
{
"value": null,
"label": "ethiopian-cuisine"
},
{
"value": null,
"label": "european-cuisine"
},
{
"value": null,
"label": "filipino-cuisine"
},
{
"value": null,
"label": "french-cuisine"
},
{
"value": null,
"label": "fusion-cuisine"
},
{
"value": null,
"label": "fusion-cuisine-indo-chinese-fusion"
},
{
"value": null,
"label": "german-cuisine"
},
{
"value": null,
"label": "goan-cuisine"
},
{
"value": null,
"label": "greece-cuisine"
},
{
"value": null,
"label": "gujarati-cuisine"
},
{
"value": null,
"label": "hawaian-cuisine"
},
{
"value": null,
"label": "hyderabad-cuisine"
},
{
"value": null,
"label": "indian-cuisine"
},
{
"value": null,
"label": "indonesian-cuisine"
},
{
"value": null,
"label": "international-cuisine"
},
{
"value": null,
"label": "iranian-cuisine"
},
{
"value": null,
"label": "irish-cuisine"
},
{
"value": null,
"label": "italian-cuisine"
},
{
"value": null,
"label": "jain-food"
},
{
"value": null,
"label": "jamaican-cuisine"
},
{
"value": null,
"label": "japanese-cuisine"
},
{
"value": null,
"label": "kashmiri-cusine"
},
{
"value": null,
"label": "kerala-cuisine"
},
{
"value": null,
"label": "konkan-cuisine"
},
{
"value": null,
"label": "korean-cuisine"
},
{
"value": null,
"label": "latin-american-cuisine"
},
{
"value": null,
"label": "latin-cuisine"
},
{
"value": null,
"label": "lebanese-cuisine"
},
{
"value": null,
"label": "local-cuisine"
},
{
"value": null,
"label": "maharastrian-cuisine"
},
{
"value": null,
"label": "malaysian-cuisine"
},
{
"value": null,
"label": "malwani-cuisine"
},
{
"value": null,
"label": "mandi-cuisine"
},
{
"value": null,
"label": "mangalorean-cuisine"
},
{
"value": null,
"label": "mediterranean-cuisine"
},
{
"value": null,
"label": "mexican-cuisine"
},
{
"value": null,
"label": "middle-eastern-cuisine"
},
{
"value": null,
"label": "moroccan-cuisine"
},
{
"value": null,
"label": "multi-cuisine"
},
{
"value": null,
"label": "nepalese-cuisine"
},
{
"value": null,
"label": "north-indian-cuisine"
},
{
"value": null,
"label": "odia-cuisine"
},
{
"value": null,
"label": "pakistani-cuisine"
},
{
"value": null,
"label": "peranakan-cuisine"
},
{
"value": null,
"label": "persian-cuisine"
},
{
"value": null,
"label": "peruvian-cuisine"
},
{
"value": null,
"label": "philippine-cuisine"
},
{
"value": null,
"label": "portuguese-cuisine"
},
{
"value": null,
"label": "punjabi-cuisine"
},
{
"value": null,
"label": "rajasthani-cuisine"
},
{
"value": null,
"label": "russian-cuisine"
},
{
"value": null,
"label": "scottish-cuisine"
},
{
"value": null,
"label": "singaporean-cuisine"
},
{
"value": null,
"label": "south-indian-cuisine"
},
{
"value": null,
"label": "spanish-cuisine"
},
{
"value": null,
"label": "sri-lankan-cuisine"
},
{
"value": null,
"label": "swiss-cusine"
},
{
"value": null,
"label": "syrian-cuisine"
},
{
"value": null,
"label": "taiwanese-cuisine"
},
{
"value": null,
"label": "texmex-cuisine"
},
{
"value": null,
"label": "thai-cuisine"
},
{
"value": null,
"label": "tibetian-cuisine"
},
{
"value": null,
"label": "turkish-cuisine"
},
{
"value": null,
"label": "vietnamese-cuisine"
},
{
"value": null,
"label": "western-cuisine"
},
{
"value": null,
"label": "general"
},
{
"value": null,
"label": "fast-food"
},
{
"value": null,
"label": "fast-casual-dining"
},
{
"value": null,
"label": "casual-dining"
},
{
"value": null,
"label": "fine-dining"
},
{
"value": null,
"label": "luxury-dining"
},
{
"value": null,
"label": "bakery"
},
{
"value": null,
"label": "juice-bar"
},
{
"value": null,
"label": "dessert-parlour"
},
{
"value": null,
"label": "brewery"
},
{
"value": null,
"label": "vegetarian-restaurant"
},
{
"value": null,
"label": "vegan-restaurant"
},
{
"value": null,
"label": "quick-bites"
},
{
"value": null,
"label": "chain-outlet"
},
{
"value": null,
"label": "buffet"
},
{
"value": null,
"label": "themed-restaurant"
},
{
"value": null,
"label": "ladies-night"
},
{
"value": null,
"label": "breakfast"
},
{
"value": null,
"label": "brunch"
},
{
"value": null,
"label": "lunch"
},
{
"value": null,
"label": "afternoon-tea"
},
{
"value": null,
"label": "dinner"
},
{
"value": null,
"label": "supper"
},
{
"value": null,
"label": "all-day-breakfast"
},
{
"value": null,
"label": "lunch-and-dinner"
},
{
"value": null,
"label": "all-meals"
},
{
"value": null,
"label": "dine-with-a-view"
},
{
"value": null,
"label": "cakes"
},
{
"value": null,
"label": "chocolates"
},
{
"value": null,
"label": "cream-puffs"
},
{
"value": null,
"label": "cupcakes"
},
{
"value": null,
"label": "donuts"
},
{
"value": null,
"label": "pastries"
},
{
"value": null,
"label": "ice-cream"
},
{
"value": null,
"label": "frozen-yogurt"
},
{
"value": null,
"label": "waffles"
},
{
"value": null,
"label": "breads-and-pastries"
},
{
"value": null,
"label": "air-conditioned"
},
{
"value": null,
"label": "drive-thru"
},
{
"value": null,
"label": "games"
},
{
"value": null,
"label": "happy-hours"
},
{
"value": null,
"label": "highchair-available"
},
{
"value": null,
"label": "karaoke"
},
{
"value": null,
"label": "kids-play-area"
},
{
"value": null,
"label": "live-cooking"
},
{
"value": null,
"label": "live-music"
},
{
"value": null,
"label": "live-sports-screening"
},
{
"value": null,
"label": "live-entertainment"
},
{
"value": null,
"label": "outdoor-seating"
},
{
"value": null,
"label": "parking-available"
},
{
"value": null,
"label": "poolside-dining"
},
{
"value": null,
"label": "private-dining"
},
{
"value": null,
"label": "rooftop-dining"
},
{
"value": null,
"label": "serves-alcohol-full-bar"
},
{
"value": null,
"label": "smoking-area"
},
{
"value": null,
"label": "wheelchair-access"
},
{
"value": null,
"label": "wifi"
},
{
"value": null,
"label": "delivery-services"
},
{
"value": null,
"label": "booking-and-reservations"
},
{
"value": null,
"label": "catering-services"
},
{
"value": null,
"label": "24/7"
},
{
"value": null,
"label": "self-serve"
},
{
"value": null,
"label": "friendly-staff"
},
{
"value": null,
"label": "dine-in"
},
{
"value": null,
"label": "mobile-app"
},
{
"value": null,
"label": "take-away"
},
{
"value": null,
"label": "classical-design"
},
{
"value": null,
"label": "ethnic-design"
},
{
"value": null,
"label": "industrial-design"
},
{
"value": null,
"label": "country-design"
},
{
"value": null,
"label": "basic-design"
},
{
"value": null,
"label": "other-design"
},
{
"value": null,
"label": "large-group-friendly"
},
{
"value": null,
"label": "business-meeting"
},
{
"value": null,
"label": "couple-friendly"
},
{
"value": null,
"label": "vegetarian-friendly"
},
{
"value": null,
"label": "pet-friendly"
},
{
"value": null,
"label": "accepts-apple-pay"
},
{
"value": null,
"label": "accepts-android-pay"
},
{
"value": null,
"label": "mobile-payment"
},
{
"value": null,
"label": "cash-on-delivery"
},
{
"value": null,
"label": "cards-only"
},
{
"value": null,
"label": "premium"
},
{
"value": null,
"label": "average-pricing"
},
{
"value": null,
"label": "affordable"
},
{
"value": null,
"label": "steak-house"
},
{
"value": null,
"label": "gastropub"
},
{
"value": null,
"label": "greek-cuisine"
},
{
"value": null,
"label": "haute-cuisine"
},
{
"value": null,
"label": "nouvelle-cuisine"
},
{
"value": null,
"label": "halal"
},
{
"value": null,
"label": "kosher"
},
{
"value": null,
"label": "specialty-food-market"
},
{
"value": null,
"label": "late-night-dining"
},
{
"value": null,
"label": "dine-with-chef"
},
{
"value": null,
"label": "curry"
},
{
"value": null,
"label": "dim-sum"
},
{
"value": null,
"label": "noodles"
},
{
"value": null,
"label": "pasta"
},
{
"value": null,
"label": "pizza"
},
{
"value": null,
"label": "sushi"
},
{
"value": null,
"label": "tapas"
},
{
"value": null,
"label": "soups"
},
{
"value": null,
"label": "hamburgers"
},
{
"value": null,
"label": "salads"
},
{
"value": null,
"label": "sandwiches"
},
{
"value": null,
"label": "wraps-and-rolls"
},
{
"value": null,
"label": "meat"
},
{
"value": null,
"label": "poultry"
},
{
"value": null,
"label": "seafood"
},
{
"value": null,
"label": "vegetarian-friendly"
},
{
"value": null,
"label": "vegan"
},
{
"value": null,
"label": "juices"
},
{
"value": null,
"label": "smoothies"
},
{
"value": null,
"label": "beers"
},
{
"value": null,
"label": "cocktails"
},
{
"value": null,
"label": "coffee"
},
{
"value": null,
"label": "tea"
},
{
"value": null,
"label": "whiskeys"
},
{
"value": null,
"label": "wines"
},
{
"value": null,
"label": "hookah"
},
{
"value": null,
"label": "gluten-free"
},
{
"value": null,
"label": "signature-dish"
},
{
"value": null,
"label": "shepherd-pie"
},
{
"value": null,
"label": "eton-mess"
},
{
"value": null,
"label": "rum"
},
{
"value": null,
"label": "mocktails"
},
{
"value": null,
"label": "mousse"
},
{
"value": null,
"label": "celebrity-chef"
},
{
"value": null,
"label": "dance-floor"
},
{
"value": null,
"label": "banquet-hall"
},
{
"value": null,
"label": "infinity-pool"
},
{
"value": null,
"label": "validated-parking"
},
{
"value": null,
"label": "tv"
},
{
"value": null,
"label": "valet-parking"
},
{
"value": null,
"label": "online-order"
},
{
"value": null,
"label": "modern-design"
},
{
"value": null,
"label": "kid-friendly"
},
{
"value": null,
"label": "accepts-cards"
},
{
"value": null,
"label": "luxury"
}
]
}
Scenario: [7.1:118]
To validate the response for campaigns api
ms: 1122
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:03.665 karate.env system property was: null
20:57:03.665 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
108
Given headers req_headers
0
109
And url baseUrl
0
110
And path campaignsApiUrl
1
111
And params campaigntype
0
112
When method get
1119
20:57:03.670 request:
1 > GET https://dev-consumer-api.crayondata.com/api/v3/user/campaigns?campaignType=EVENT
1 > Authorization: auth
1 > Content-Type: application/json
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
20:57:04.787 response time in milliseconds: 1116
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:04 GMT
{"campaigns":[{"id":"202107","name":"Season of love","description":"","images":{"default":"https://bank-maya-data.s3.amazonaws.com/bank-maya-data/bank_maya/data/campaigns_hub/202107.png","thumbnail":"https://bank-maya-data.s3.amazonaws.com/bank-maya-data/bank_maya/data/campaigns_hub/202107.png"},"campaignType":"EVENT","externalId":202107,"cities":["all"],"startDateTime":"2021-07-26T00:00:00Z","endDateTime":"2023-02-02T23:59:00Z","active":true,"heroCampaign":true,"created":"2020-02-02T00:00:00Z"},{"id":"201103","name":"Instant Discovery Campaign","description":"","images":{"default":"https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-201103.png","thumbnail":"https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-201103.png"},"campaignType":"EVENT","cities":["all"],"startDateTime":"2022-04-12T00:00:00Z","endDateTime":"2022-05-16T23:59:00Z","active":true,"heroCampaign":true,"created":"2021-12-24T00:00:00Z"},{"id":"200102","name":"Instant Retail Stores Campaign","description":"","images":{"default":"https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-200102.png","thumbnail":"https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-200102.png"},"campaignType":"EVENT","cities":["all"],"startDateTime":"2022-04-12T00:00:00Z","endDateTime":"2022-05-16T23:59:00Z","active":true,"heroCampaign":true,"created":"2021-12-24T00:00:00Z"}]}
113
Then status 200
0
114
Then print response
2
20:57:04.789 [print] {
"campaigns": [
{
"id": "202107",
"name": "Season of love",
"description": "",
"images": {
"default": "https://bank-maya-data.s3.amazonaws.com/bank-maya-data/bank_maya/data/campaigns_hub/202107.png",
"thumbnail": "https://bank-maya-data.s3.amazonaws.com/bank-maya-data/bank_maya/data/campaigns_hub/202107.png"
},
"campaignType": "EVENT",
"externalId": 202107,
"cities": [
"all"
],
"startDateTime": "2021-07-26T00:00:00Z",
"endDateTime": "2023-02-02T23:59:00Z",
"active": true,
"heroCampaign": true,
"created": "2020-02-02T00:00:00Z"
},
{
"id": "201103",
"name": "Instant Discovery Campaign",
"description": "",
"images": {
"default": "https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-201103.png",
"thumbnail": "https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-201103.png"
},
"campaignType": "EVENT",
"cities": [
"all"
],
"startDateTime": "2022-04-12T00:00:00Z",
"endDateTime": "2022-05-16T23:59:00Z",
"active": true,
"heroCampaign": true,
"created": "2021-12-24T00:00:00Z"
},
{
"id": "200102",
"name": "Instant Retail Stores Campaign",
"description": "",
"images": {
"default": "https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-200102.png",
"thumbnail": "https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-200102.png"
},
"campaignType": "EVENT",
"cities": [
"all"
],
"startDateTime": "2022-04-12T00:00:00Z",
"endDateTime": "2022-05-16T23:59:00Z",
"active": true,
"heroCampaign": true,
"created": "2021-12-24T00:00:00Z"
}
]
}
Scenario: [8.1:133]
To validate the response for all choices list
ms: 1482
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:03.735 karate.env system property was: null
20:57:03.737 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
123
Given headers req_headers
0
124
And url baseUrl
0
125
And path choiceApiUrl
1
126
And request {category:all, choiceCount:10, lang:en,city:dubai,includeCampaigns:true,servedAt:2022-04-06T23:59:59.000+00:00, }
1
127
When method Post
1443
20:57:03.744 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/choice/list
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 129
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"category":"all","choiceCount":10,"lang":"en","city":"dubai","includeCampaigns":true,"servedAt":"2022-04-06T23:59:59.000+00:00"}
20:57:05.179 response time in milliseconds: 1422
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:04 GMT
{"id":"LoWRyEt4TKu8KMXesKEkpw","choices":[{"id":"j1ejb5wFTxCxmWh3wM2faw","listName":"Selected just for you","listType":"NEXT_BEST","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","distance":0.0,"tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too"},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","distance":0.0,"tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too"},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","distance":0.0,"tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too"},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","distance":0.0,"tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too"},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too"},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"5522bff7-cb39-4f35-bf89-c11cfd4b258b","name":"Bath And Body Works","description":"For over 20 years, Bath & Body Works creates incredible scents and offers to the customers hundreds of quality products. Customers look to Bath & Body Works for quality, on-trend products and the newest, freshest fragrances. Pampering collections such as Cocoa Shea, Fragrances with Essential Oils, and Aromatherapy simply add to the charm, whilst the Men's Collection includes masculine fragrances to clean, refresh and soften skin","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD408_1_Bath_&_Body_Works_New_Image.jpg","dominantColorCode":"#ded7d0","externalId":"AD408","image":"https://dpimages.crayondata.com/high-res-image/adib/Bath-Body-Works-Logo.png","url":"https://www.bathandbodyworks.ae/en/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste"},"offers":[{"id":"1410","name":"Get upto 14% cashback on Bath & Body Works","description":"Get upto 14% cashback on Bath & Body Works\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/460/adv_bathandbodyworks_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=460&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AD408&aff_sub3=1410&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AD408&aff_sub3=1410&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.40917Z"},{"id":"zbnT5YgKTpiN6jSAJipkRg","listName":"Expiring Soon","listType":"EXPIRING_SOON","totalCount":1,"items":[{"item":{"id":"f1bd8cae-9374-4037-9b8a-eb1740141a04","name":"The Entertainer","description":"The Entertainer provides of two-for-one incentive offers and other discounts across the Middle East, Asia, South Africa & Europe.","category":"miscellaneous stores","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg","dominantColorCode":"#FCFFE0","distance":0.0,"externalId":"DC52","tasteMatchScoreReason":"Because you like business, you might like this too","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC52_1_The_Entertainer_New_Image.jpg","tasteMatchScore":70,"url":"https://www.theentertainerme.com/"},"offers":[{"id":"863","name":"Get exclusive offers on The Entertainer","description":"Get exclusive offers on The Entertainer\n1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2022-04-07T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"AED","cashbackValue":4.0,"offerStatus":"active","url":"https://go.urtrackinglink.com/aff_c?offer_id=1171&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}}],"tags":["online","business","application"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.409353Z"},{"id":"6oJyQ4FzQ0OpbFVTuy_1oQ","listName":"Recently viewed","listType":"RESUME","totalCount":3,"items":[{"item":{"id":"55b64dbc-0e2e-46be-9de3-530621c29668","name":"Ssense","description":"Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.","category":"apparel and accessories","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","dominantColorCode":"#090806","distance":0.0,"externalId":"AC128","tasteMatchScoreReason":"Because you like fashion, you might like this too","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg","tasteMatchScore":78,"url":"https://www.ssense.com/"},"offers":[{"id":"1383","name":"Get upto 5% cashback on Ssense","description":"Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","offerType":"cashback","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","redeemed":false,"claimed":false,"currency":"HKD","cashbackValue":5.0,"offerStatus":"active","url":"https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC128&aff_sub3=1383&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"}}],"tags":["regular-retail-store","basic-service","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","sleep-wear","others","footwear-store","swim-and-beach-wear","bags-and-wallets","large-product-range","jewellery-store","accessories-store","casual-wear","clothing-store","loafers","inner-wear-and-lingerie","boots","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"47bf1663-a2e5-4156-afaa-d80cd1d4d8fb","name":"Namshi","description":"Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.","category":"apparel and accessories","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1276/namshi.png","dominantColorCode":"#bfe2f6","distance":0.0,"externalId":"AC90","tasteMatchScoreReason":"Because you like fashion, you might like this too","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg","tasteMatchScore":78,"url":"https://en-ae.namshi.com/"},"offers":[{"id":"1682","name":"Get upto 15% discount on Namshi","description":"Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-14T00:00:00.389Z","validTo":"2023-02-14T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"ac143","image":"https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":0.0,"offerStatus":"active","url":"http://www.namshi.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1682&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","offerType":"offline coupon","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":""}},{"id":"1349","name":"Get exclusive offers on Namshi","description":"Get exclusive offers on Namshi\n1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-11T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","redeemed":false,"claimed":false,"currency":"","cashbackValue":5.0,"offerStatus":"active","url":"https://go.arabclicks.com/aff_c?offer_id=938&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1349&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."}},{"id":"1886","name":"Get exclusive offers on Namshi","description":"Get exclusive offers on Namshi\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1276/namshi.png","offerType":"online coupon","payoutType":"cpa_flat","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","redeemed":false,"claimed":false,"currency":"","cashbackValue":3.2,"offerStatus":"active","url":"http://go.urtrackinglink.com/aff_c?offer_id=1276&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1886&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."}},{"id":"20916","name":"Get upto 20% discount on Namshi","description":"Get upto 20% discount on Namshi\n1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-02-13T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"OM123","image":"https://dpimages.crayondata.com/high-res-image/adib/namshi_product.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":0.0,"offerStatus":"active","url":"https://en-ae.namshi.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AC90&subid2=20916&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","offerType":"offline coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"USD"}}],"tags":["jackets-and-blazers","outerwear","daily-clothing","fashion-jewellery","party-wear","footwear-store","swim-and-beach-wear","accessories-store","coats","clothing-store","inner-wear-and-lingerie","sneakers","basic-service","regular-retail-store","t-shirts","formal-wear","watch-store","modern","sandals","men-women-children-shoes","sunglasses","online-and-in-store","sweaters","formal-shoes","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","western-clothing","boots","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"634ea784-f4a6-4d02-8cda-0374e53823d6","name":"Newchic","description":"Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.","category":"apparel and accessories","active":true,"properties":{"image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","dominantColorCode":"#f0f0f0","distance":0.0,"externalId":"AD58","tasteMatchScoreReason":"Because you like home décor, you might like this too","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg","tasteMatchScore":72,"url":"http://www.newchic.com/"},"offers":[{"id":"19886","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"AMTDM20","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":12.0,"offerStatus":"active","url":"https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=19886&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","offerType":"online coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"USD"}},{"id":"1633","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"NCAFF20","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":12.0,"offerStatus":"active","url":"https://ad.admitad.com/g/7f3cxjm4yjd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1633&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","offerType":"online coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"USD"}},{"id":"1712","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"NCAFF15","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":12.0,"offerStatus":"active","url":"https://ad.admitad.com/g/c50whdpob9d1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1712&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","offerType":"online coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"USD"}},{"id":"1597","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"NCAFF25","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":12.0,"offerStatus":"active","url":"https://ad.admitad.com/g/luljs3wmayd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1597&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","offerType":"online coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"USD"}}],"tags":["regular-retail-store","home-and-kitchen","online","home-furnishings","apparel-and-accessories","international","pet-supplies","accessories-store","pet-and-pet-supplies","footwear-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.409653Z"},{"id":"Aw8IbkXJSrKd0IMp0yFmEw","listName":"Deals of the day","listType":"TRENDING","totalCount":10,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","distance":0.0,"tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too"},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","distance":0.0,"tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too"},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","distance":0.0,"tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too"},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","distance":0.0,"tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too"},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too"},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"3d541c25-6df9-4fd4-b5ce-8061a12abe67","name":"Ounass","description":"Many luxury fashion designers in the Middle East","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg","dominantColorCode":"#d5d5d7","externalId":"AC105","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","url":"https://www.ounass.com/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like home décor, you might like this too"},"offers":[{"id":"1362","name":"Get upto 6% cashback on Ounass","description":"Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1362&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1843","name":"Get upto 5% discount on Ounass","description":"Get upto 5% discount on Ounass\n1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-06-24T00:00:00.389Z","validTo":"2023-09-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"aco67","termsAndConditions":"1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://ar.ounass.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1843&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1361","name":"Get exclusive offers on Ounass","description":"Get exclusive offers on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=194&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1361&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","home-and-kitchen","home-furnishings","shoes-and-accessories-store","apparel-and-accessories","gifts-and-souvenirs","furniture","accessories-store","health-and-beauty","multi-brand","standalone-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4a28a630-e64f-4287-9713-47b46450cb38","name":"Toys R Us","description":"Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don’t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We’re always growing and we’ll have more stores and online stores opening in the region soon – we can’t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC55","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","url":"https://www.toysrusmena.com/en-AE/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too"},"offers":[{"id":"842","name":"Get exclusive offers on Toys R Us","description":"Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC55&aff_sub3=842&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","video-games","party-supplies","bicycle-and-accessories","art-and-craft-supplies","multi-brand","costumes","sporting-equipment","online-and-in-store","toys-and-games","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","kids-utilities","games","international","shopping-mall","computer-and-electronics","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"58ab63ee-12e3-4d54-a9cc-3ea7619a8221","name":"Soukare","description":"souKare is one of the largest online stores for colored contact lenses.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg","dominantColorCode":"#e5f2fb","externalId":"AC124","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","url":"https://soukare.com/ar-sa/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like perfumes, you might like this too"},"offers":[{"id":"1389","name":"Get upto 5% cashback on Soukare","description":"Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC124&aff_sub3=1389&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","perfumery","health-and-beauty","multi-brand","standalone-store","personal-care","online-and-in-store","nutritional-supplements","pharmacy","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"5522bff7-cb39-4f35-bf89-c11cfd4b258b","name":"Bath And Body Works","description":"For over 20 years, Bath & Body Works creates incredible scents and offers to the customers hundreds of quality products. Customers look to Bath & Body Works for quality, on-trend products and the newest, freshest fragrances. Pampering collections such as Cocoa Shea, Fragrances with Essential Oils, and Aromatherapy simply add to the charm, whilst the Men's Collection includes masculine fragrances to clean, refresh and soften skin","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD408_1_Bath_&_Body_Works_New_Image.jpg","dominantColorCode":"#ded7d0","externalId":"AD408","image":"https://dpimages.crayondata.com/high-res-image/adib/Bath-Body-Works-Logo.png","url":"https://www.bathandbodyworks.ae/en/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste"},"offers":[{"id":"1410","name":"Get upto 14% cashback on Bath & Body Works","description":"Get upto 14% cashback on Bath & Body Works\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/460/adv_bathandbodyworks_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=460&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AD408&aff_sub3=1410&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AD408&aff_sub3=1410&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste"},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.410105Z"},{"id":"sgxjtdEXRhKVSWkQzY_ABA","listName":"Best-selling offers","listType":"POPULARITY","totalCount":10,"items":[{"item":{"id":"8affa868-b20c-4e20-ba77-84b0679e683b","name":"Babysouk","description":"babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png","dominantColorCode":"#ffffff","externalId":"DC9","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","url":"https://www.babysouk.com/","distance":0.0,"tasteMatchScore":84,"tasteMatchScoreReason":"Because you like fashion, you might like this too"},"offers":[{"id":"839","name":"Get exclusive offers on Babysouk","description":"Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC9&aff_sub3=839&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","multi-brand","online-and-in-store","travel-utilities","large-product-range","home-and-kitchen","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","kids-furniture","accessories-store","travel-accessories","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"12ba32e1-6757-4ab3-ad71-a00f8144c730","name":"Ferns N Petals","description":"Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg","dominantColorCode":"#d1b4ad","externalId":"DC26","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","url":"https://www.fnp.ae/","distance":0.0,"tasteMatchScore":82,"tasteMatchScoreReason":"Because you like confectioneries, you might like this too"},"offers":[{"id":"1758","name":"Get upto 8% cashback on Ferns N Petals","description":"Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","online","basic-service","international","chocolates","gifts-and-souvenirs","florist","food-beverages-and-groceries","dry-fruits-and-nuts","confectionery","delivery-service","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"10101386-6f01-4f71-b603-ea46c20f2eb8","name":"Brands For Less","description":"The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg","dominantColorCode":"#00adcb","externalId":"DC13","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","url":"https://www.brandsforless.ae/","distance":0.0,"tasteMatchScore":78,"tasteMatchScoreReason":"Because you like perfumes, you might like this too"},"offers":[{"id":"830","name":"Get upto 1.5% cashback on Brands For Less","description":"Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-11-22T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["perfumery","kitchen-appliances","automobile-and-accessories","pet-supplies","health-and-beauty","pet-and-pet-supplies","online-and-in-store","footwear-store","computer-and-accessories","department-store","home-and-kitchen","home-furnishings","apparel-and-accessories","international","accessories-store","shopping-mall","mobile-phones","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"47bf1663-a2e5-4156-afaa-d80cd1d4d8fb","name":"Namshi","description":"Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg","dominantColorCode":"#bfe2f6","externalId":"AC90","image":"https://media.go2speed.org/brand/files/dcm/1276/namshi.png","url":"https://en-ae.namshi.com/","distance":0.0,"tasteMatchScore":78,"tasteMatchScoreReason":"Because you like fashion, you might like this too"},"offers":[{"id":"1682","name":"Get upto 15% discount on Namshi","description":"Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-14T00:00:00.389Z","validTo":"2023-02-14T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ac143","termsAndConditions":"1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"http://www.namshi.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1682&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1349","name":"Get exclusive offers on Namshi","description":"Get exclusive offers on Namshi\n1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-11T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=938&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1349&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1886","name":"Get exclusive offers on Namshi","description":"Get exclusive offers on Namshi\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1276/namshi.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1276&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1886&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"20916","name":"Get upto 20% discount on Namshi","description":"Get upto 20% discount on Namshi\n1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-02-13T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/namshi_product.png","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"OM123","termsAndConditions":"1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://en-ae.namshi.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AC90&subid2=20916&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["jackets-and-blazers","outerwear","daily-clothing","fashion-jewellery","party-wear","footwear-store","swim-and-beach-wear","accessories-store","coats","clothing-store","inner-wear-and-lingerie","sneakers","basic-service","regular-retail-store","t-shirts","formal-wear","watch-store","modern","sandals","men-women-children-shoes","sunglasses","online-and-in-store","sweaters","formal-shoes","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","western-clothing","boots","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"cb1bdc8b-4b53-43b8-b4c2-00638dc1d7df","name":"Rivoli Shop","description":"Rivoli encompasses a wide spectrum of all things premium such as watches, eyewear, jewelry, leather accessories and writing instruments.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC116_1_Rivoli_Shop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC116","image":"https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg","url":"https://rivolishop.com/","distance":0.0,"tasteMatchScore":76,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too"},"offers":[{"id":"1378","name":"Get upto 4% cashback on Rivoli Shop","description":"Get upto 4% cashback on Rivoli Shop\n1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-05-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=665&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["large-product-range","luxury-watches","designer-labels","watch-store","boutique-store","accessories-store","modern","fashion-watches","fitness-watches","smart-watches","online-and-in-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dffc64f3-a8f1-4fbf-82a3-370a0c3999a7","name":"Amazon","description":"Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png","dominantColorCode":"#eaeceb","externalId":"AC8","image":"https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg","url":"https://www.amazon.sa","distance":0.0,"tasteMatchScore":76,"tasteMatchScoreReason":"Because you like kitchen essentials, you might like this too"},"offers":[{"id":"13843","name":"Get upto 8.4AED cashback on Amazon Home Services Bounty","description":"Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-02-19T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC8&aff_sub3=13843&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["video-games","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","multi-brand","footwear-store","toys-and-games","home-appliances","home-and-kitchen","home-furnishings","online","kitchen-accessories","luggage-store","books-and-music","accessories-store","computer-and-electronics","clothing-store","travel-accessories","groceries","basic-service","hypermarket","kitchen-appliances","pet-supplies","furniture","sporting-equipment","music-store","computer-and-accessories","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","gifts-and-souvenirs","mobile-phones","cosmetics-and-skincare","books","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4248f84c-bbca-425c-b193-211ca80dff51","name":"Aliexpress","description":"Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg","dominantColorCode":"#ced1d8","externalId":"AC7","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","url":"https://ar.aliexpress.com/","distance":0.0,"tasteMatchScore":74,"tasteMatchScoreReason":"Because you like department stores, you might like this too"},"offers":[{"id":"1357","name":"Get upto 9% cashback on Aliexpress","description":"Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["kitchen-appliances","pet-and-pet-supplies","multi-brand","sporting-equipment","toys-and-games","sports-and-outdoors","department-store","online","apparel-and-accessories","games","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"0eb0da82-d526-4b58-8a69-713451de1114","name":"American Eagle","description":"American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg","dominantColorCode":"#e6e6e6","externalId":"AC11","image":"https://media.go2speed.org/brand/files/dcm/1349/download (3).png","url":"https://www.americaneagle.com.sa/en/","distance":0.0,"tasteMatchScore":72,"tasteMatchScoreReason":"Because you like fashion, you might like this too"},"offers":[{"id":"1367","name":"Get upto 14% cashback on American Eagle","description":"Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"13594","name":"Get exclusive offers on American Eagle","description":"Get exclusive offers on American Eagle\n1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-04-02T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1349/download (3).png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1349&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","regular-retail-store","winter-wear","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","modern","daily-clothing","sunglasses","online-and-in-store","sweaters","footwear-store","large-product-range","flipflops","dresses","occasional-clothing","accessories-store","coats","casual-wear","casual-shoes","clothing-store","shirts","western-clothing","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"89531d1e-212d-42dd-a3eb-cc740cd34ebe","name":"Banggood","description":"Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC19","image":"http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png","url":"https://www.banggood.com/","distance":0.0,"tasteMatchScore":72,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too"},"offers":[{"id":"1370","name":"Get upto 22% cashback on Banggood","description":"Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":22.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC19&aff_sub3=1370&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["hardware","stationery","pet-supplies","health-and-beauty","pet-and-pet-supplies","multi-brand","sporting-equipment","sports-and-outdoors","department-store","home-appliances","home-and-kitchen","home-furnishings","online","apparel-and-accessories","international","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","personal-care","tools-and-home-improvement","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"634ea784-f4a6-4d02-8cda-0374e53823d6","name":"Newchic","description":"Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg","dominantColorCode":"#f0f0f0","externalId":"AD58","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","url":"http://www.newchic.com/","distance":0.0,"tasteMatchScore":72,"tasteMatchScoreReason":"Because you like home décor, you might like this too"},"offers":[{"id":"19886","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"AMTDM20","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=19886&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1633","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"NCAFF20","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/7f3cxjm4yjd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1633&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1712","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"NCAFF15","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/c50whdpob9d1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1712&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1597","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"NCAFF25","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/luljs3wmayd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1597&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","home-and-kitchen","online","home-furnishings","apparel-and-accessories","international","pet-supplies","accessories-store","pet-and-pet-supplies","footwear-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.41067Z"},{"id":"Ci1JAuHpT3m4WvTEkQmKkg","listName":"Because you are interested in electronic accessories & fashion","listType":"TAG_BASED","totalCount":10,"items":[{"item":{"id":"12ba32e1-6757-4ab3-ad71-a00f8144c730","name":"Ferns N Petals","description":"Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg","dominantColorCode":"#d1b4ad","externalId":"DC26","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","url":"https://www.fnp.ae/","distance":0.0,"tasteMatchScore":82,"tasteMatchScoreReason":"Because you like confectioneries, you might like this too"},"offers":[{"id":"1758","name":"Get upto 8% cashback on Ferns N Petals","description":"Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","online","basic-service","international","chocolates","gifts-and-souvenirs","florist","food-beverages-and-groceries","dry-fruits-and-nuts","confectionery","delivery-service","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"10101386-6f01-4f71-b603-ea46c20f2eb8","name":"Brands For Less","description":"The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg","dominantColorCode":"#00adcb","externalId":"DC13","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","url":"https://www.brandsforless.ae/","distance":0.0,"tasteMatchScore":78,"tasteMatchScoreReason":"Because you like perfumes, you might like this too"},"offers":[{"id":"830","name":"Get upto 1.5% cashback on Brands For Less","description":"Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-11-22T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["perfumery","kitchen-appliances","automobile-and-accessories","pet-supplies","health-and-beauty","pet-and-pet-supplies","online-and-in-store","footwear-store","computer-and-accessories","department-store","home-and-kitchen","home-furnishings","apparel-and-accessories","international","accessories-store","shopping-mall","mobile-phones","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"55b64dbc-0e2e-46be-9de3-530621c29668","name":"Ssense","description":"Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg","dominantColorCode":"#090806","externalId":"AC128","image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","url":"https://www.ssense.com/","distance":0.0,"tasteMatchScore":78,"tasteMatchScoreReason":"Because you like fashion, you might like this too"},"offers":[{"id":"1383","name":"Get upto 5% cashback on Ssense","description":"Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"HKD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC128&aff_sub3=1383&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","basic-service","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","sleep-wear","others","footwear-store","swim-and-beach-wear","bags-and-wallets","large-product-range","jewellery-store","accessories-store","casual-wear","clothing-store","loafers","inner-wear-and-lingerie","boots","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"cb1bdc8b-4b53-43b8-b4c2-00638dc1d7df","name":"Rivoli Shop","description":"Rivoli encompasses a wide spectrum of all things premium such as watches, eyewear, jewelry, leather accessories and writing instruments.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC116_1_Rivoli_Shop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC116","image":"https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg","url":"https://rivolishop.com/","distance":0.0,"tasteMatchScore":76,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too"},"offers":[{"id":"1378","name":"Get upto 4% cashback on Rivoli Shop","description":"Get upto 4% cashback on Rivoli Shop\n1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-05-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=665&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["large-product-range","luxury-watches","designer-labels","watch-store","boutique-store","accessories-store","modern","fashion-watches","fitness-watches","smart-watches","online-and-in-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4248f84c-bbca-425c-b193-211ca80dff51","name":"Aliexpress","description":"Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg","dominantColorCode":"#ced1d8","externalId":"AC7","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","url":"https://ar.aliexpress.com/","distance":0.0,"tasteMatchScore":74,"tasteMatchScoreReason":"Because you like department stores, you might like this too"},"offers":[{"id":"1357","name":"Get upto 9% cashback on Aliexpress","description":"Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["kitchen-appliances","pet-and-pet-supplies","multi-brand","sporting-equipment","toys-and-games","sports-and-outdoors","department-store","online","apparel-and-accessories","games","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"0eb0da82-d526-4b58-8a69-713451de1114","name":"American Eagle","description":"American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg","dominantColorCode":"#e6e6e6","externalId":"AC11","image":"https://media.go2speed.org/brand/files/dcm/1349/download (3).png","url":"https://www.americaneagle.com.sa/en/","distance":0.0,"tasteMatchScore":72,"tasteMatchScoreReason":"Because you like fashion, you might like this too"},"offers":[{"id":"1367","name":"Get upto 14% cashback on American Eagle","description":"Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"13594","name":"Get exclusive offers on American Eagle","description":"Get exclusive offers on American Eagle\n1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-04-02T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1349/download (3).png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1349&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","regular-retail-store","winter-wear","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","modern","daily-clothing","sunglasses","online-and-in-store","sweaters","footwear-store","large-product-range","flipflops","dresses","occasional-clothing","accessories-store","coats","casual-wear","casual-shoes","clothing-store","shirts","western-clothing","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"0e105a12-1c52-4be7-ba47-3764397bfcf5","name":"The Luxury Closet","description":"Shop New & Pre-Loved Authentic Designer Bags. $50 off first order. Free Shipping Worldwide.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC53_1_The_Luxury_Closet_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC53","image":"https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg","url":"https://theluxurycloset.com/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too"},"offers":[{"id":"821","name":"Get upto 3% cashback on The Luxury Closet","description":"Get upto 3% cashback on The Luxury Closet\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=318&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["necklaces","scarfs-and-shawls","wallets","jackets-and-blazers","casual-bags","fashion-jewellery","daily-clothing","thermal-wear","footwear-store","online","jewellery-store","jeans","gold","accessories-store","coats","clothing-store","satchels-and-shoulder-bags","sneakers","basic-service","regular-retail-store","t-shirts","winter-wear","flats","men-and-women's-shoes","bracelets","fine-jewellery","men-and-women's-clothing","backpacks","sunglasses","rings","totes","sweaters","clutches","large-product-range","suits","bags-and-wallets","pants","belts","casual-wear","casual-shoes","loafers","shirts","boots"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"d67c656f-04a0-4e11-9b66-4ab180004234","name":"Danube Home","description":"Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region’s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC269","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","url":"https://uae.danubehome.com/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like kitchen essentials, you might like this too"},"offers":[{"id":"1350","name":"Get exclusive offers on Danube Home","description":"Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-11-10T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.9,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1350&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1539","name":"Get upto 50% discount on Danube Home","description":"Get upto 50% discount on Danube Home\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/danubehome_offer.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"AFYZTMC","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://uae.danubehome.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1539&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","hardware","kitchen-appliances","home-improvement-supplies","furniture","health-and-beauty","multi-brand","online-and-in-store","toys-and-games","toys","plant-nursery","large-product-range","home-furnishings","home-and-kitchen","international","apparel-and-accessories","kitchen-accessories","kids-utilities","gardening-supplies","games","paint-supplies","cosmetics-and-skincare","personal-care","tools-and-home-improvement","delivery-service","fertilizer","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dcd9f833-e362-3d15-b0c4-501f4df657d8","name":"Saramart","description":"Buy products for the best prices with free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg","dominantColorCode":"#909193","externalId":"DC49","image":"https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png","url":"APP ONLY","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like stationery, you might like this too"},"offers":[{"id":"2113","name":"Get upto 20% discount on Saramart","description":"Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"SM118","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=DC49&subid2=2113&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["multi-brand","automobile-and-accessories","clothing-store","hardware","home-audio-and-accessories","personal-care","art-and-craft-supplies","video-games","stationery","toys","plant-nursery","toys-and-games","large-product-range","home-appliances","regular-retail-store","mobile-phones","cosmetics-and-skincare","health-and-beauty","international","art-and-craft-supplies","basic-service","school-and-office-supplies","fertilizer","kitchen-appliances","home-furnishings","kitchen-accessories","apparel-and-accessories","home-and-kitchen","tools-and-home-improvement","perfumery","online-and-in-store","computer-and-electronics","accessories-store","home-improvement-supplies","kids-utilities","gardening-supplies","games","shoes-and-accessories-store","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"95519a75-e922-37c5-ba24-18c9202d1a38","name":"Bellelily","description":"Welcome to Bellelily.com, a one-stop online shop featuring the latest in women's fashion, home decor and more. Our commitment is to provide a wide range of high quality affordable collections along with a class-leading customer service experience to our customers.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD7_3_Bellelily_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD7","image":"http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png","url":"https://www.bellelily.com/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too"},"offers":[{"id":"9191","name":"Get exclusive offers on Bellelily","description":"Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":13.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"LOVE","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/bziamb92n9d1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=9191&subid3=crayon","claimed":false,"redeemed":false}},{"id":"9192","name":"Get exclusive offers on Bellelily","description":"Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":13.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"LOVE","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/b2fr0qvnnld1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=9192&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6084","name":"Get exclusive offers on Bellelily","description":"Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-30T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":13.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"NEW2022","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/36anflhc7pd1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=6084&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6184","name":"Get exclusive offers on Bellelily","description":"Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-30T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":13.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"NEW2022","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/gzp5q5vbusd1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=6184&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6067","name":"Get exclusive offers on Bellelily","description":"Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-30T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":13.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"NEW2022","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/09nm20a6i2d1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=6067&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["flats","online","large-product-range","casual-bags","hair-accessories","bags-and-wallets","cardigans","basic-service","boots","jewellery-store","men-and-women's-clothing","belts","clothing-store","swim-and-beach-wear","heels","bracelets","others","t-shirts","plus-size","casual-shoes","dresses","daily-clothing","flipflops","inner-wear-and-lingerie","scarfs-and-shawls","jeans","women's-shoes","fashion-jewellery","sunglasses","jackets-and-blazers","loafers","accessories-store","necklaces","totes","casual-wear","regular-retail-store","sweaters","pants","western-clothing","footwear-store","modern","rings","active-and-sports-wear","shirts","winter-wear","outerwear","sneakers","minimalistic"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.411315Z"},{"id":"-5k8sfgrTYeIqZLIvQM5Dg","listName":"What’s new in toys, games & fashion","listType":"DISCOVERY","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","distance":0.0,"tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too"},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","distance":0.0,"tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too"},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","distance":0.0,"tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too"},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","distance":0.0,"tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too"},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too"},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","distance":0.0,"tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste"},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.411678Z"},{"id":"N-wRdOfXQliqBSbuvtjqMw","listName":"Season of love","listType":"202107","totalCount":2,"items":[{"item":{"id":"42c04e94-9d07-4db2-a527-3bdbd848b62e","name":"Rosemary Perfumes","description":"The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg","dominantColorCode":"#becdd8","externalId":"DC48","image":"https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png","url":"https://www.rosemaryperfumes.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"13838","name":"Get exclusive offers on Rose Mary Perfumes","description":"Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-02-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","perfumery","local","shopping-mall","health-and-beauty","multi-brand","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"07fa5146-8150-42a8-a89a-227304309fe2","name":"Ubuy","description":"Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount","category":"retail stores","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg","dominantColorCode":"#ffffff","externalId":"AC150","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg","url":"https://www.ubuy.com","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like musical instruments, you might like this too","distance":0.0},"offers":[{"id":"890","name":"Get exclusive offers on Ubuy","description":"Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"","cashbackValue":2.5,"offerStatus":"active","url":"https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=890&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}},{"id":"1754","name":"Get upto 10% discount on Ubuy using","description":"Get upto 10% discount on Ubuy using\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-27T00:00:00.389Z","validTo":"2023-02-12T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"uban242","image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"offline coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"","cashbackValue":0.0,"offerStatus":"active","url":"https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1754&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","claimed":false,"redeemed":false}},{"id":"1341","name":"Get exclusive offers on Ubuy","description":"Get exclusive offers on Ubuy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"","cashbackValue":5.0,"offerStatus":"active","url":"https://go.arabclicks.com/aff_c?offer_id=939&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1341&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}},{"id":"1909","name":"Get upto 10% discount on Ubuy","description":"Get upto 10% discount on Ubuy\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-27T00:00:00.389Z","validTo":"2023-02-12T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"uban230","image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"offline coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"","cashbackValue":0.0,"offerStatus":"active","url":"https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1909&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","claimed":false,"redeemed":false}}],"tags":["perfumery","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","cameras-and-accessories","multi-brand","home-appliances","home-and-kitchen","home-furnishings","online","international","kids-utilities","kitchen-accessories","luggage-store","books-and-music","computer-and-electronics","travel-accessories","groceries","regular-retail-store","basic-service","home-improvement-supplies","pet-supplies","furniture","home-audio-and-accessories","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","books","musical-instrument","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.411926Z"}]}
128
Then status 200
0
129
Then print response
36
20:57:05.219 [print] {
"id": "LoWRyEt4TKu8KMXesKEkpw",
"choices": [
{
"id": "j1ejb5wFTxCxmWh3wM2faw",
"listName": "Selected just for you",
"listType": "NEXT_BEST",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"distance": 0.0,
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too"
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"distance": 0.0,
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too"
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"distance": 0.0,
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too"
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"distance": 0.0,
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too"
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too"
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "5522bff7-cb39-4f35-bf89-c11cfd4b258b",
"name": "Bath And Body Works",
"description": "For over 20 years, Bath & Body Works creates incredible scents and offers to the customers hundreds of quality products. Customers look to Bath & Body Works for quality, on-trend products and the newest, freshest fragrances. Pampering collections such as Cocoa Shea, Fragrances with Essential Oils, and Aromatherapy simply add to the charm, whilst the Men's Collection includes masculine fragrances to clean, refresh and soften skin",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD408_1_Bath_&_Body_Works_New_Image.jpg",
"dominantColorCode": "#ded7d0",
"externalId": "AD408",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Bath-Body-Works-Logo.png",
"url": "https://www.bathandbodyworks.ae/en/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste"
},
"offers": [
{
"id": "1410",
"name": "Get upto 14% cashback on Bath & Body Works",
"description": "Get upto 14% cashback on Bath & Body Works\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/460/adv_bathandbodyworks_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=460&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AD408&aff_sub3=1410&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AD408&aff_sub3=1410&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.40917Z"
},
{
"id": "zbnT5YgKTpiN6jSAJipkRg",
"listName": "Expiring Soon",
"listType": "EXPIRING_SOON",
"totalCount": 1,
"items": [
{
"item": {
"id": "f1bd8cae-9374-4037-9b8a-eb1740141a04",
"name": "The Entertainer",
"description": "The Entertainer provides of two-for-one incentive offers and other discounts across the Middle East, Asia, South Africa & Europe.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg",
"dominantColorCode": "#FCFFE0",
"distance": 0.0,
"externalId": "DC52",
"tasteMatchScoreReason": "Because you like business, you might like this too",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC52_1_The_Entertainer_New_Image.jpg",
"tasteMatchScore": 70,
"url": "https://www.theentertainerme.com/"
},
"offers": [
{
"id": "863",
"name": "Get exclusive offers on The Entertainer",
"description": "Get exclusive offers on The Entertainer\n1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2022-04-07T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "AED",
"cashbackValue": 4.0,
"offerStatus": "active",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1171&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"business",
"application"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.409353Z"
},
{
"id": "6oJyQ4FzQ0OpbFVTuy_1oQ",
"listName": "Recently viewed",
"listType": "RESUME",
"totalCount": 3,
"items": [
{
"item": {
"id": "55b64dbc-0e2e-46be-9de3-530621c29668",
"name": "Ssense",
"description": "Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.",
"category": "apparel and accessories",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"dominantColorCode": "#090806",
"distance": 0.0,
"externalId": "AC128",
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg",
"tasteMatchScore": 78,
"url": "https://www.ssense.com/"
},
"offers": [
{
"id": "1383",
"name": "Get upto 5% cashback on Ssense",
"description": "Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"redeemed": false,
"claimed": false,
"currency": "HKD",
"cashbackValue": 5.0,
"offerStatus": "active",
"url": "https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC128&aff_sub3=1383&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
}
}
],
"tags": [
"regular-retail-store",
"basic-service",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"sleep-wear",
"others",
"footwear-store",
"swim-and-beach-wear",
"bags-and-wallets",
"large-product-range",
"jewellery-store",
"accessories-store",
"casual-wear",
"clothing-store",
"loafers",
"inner-wear-and-lingerie",
"boots",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "47bf1663-a2e5-4156-afaa-d80cd1d4d8fb",
"name": "Namshi",
"description": "Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.",
"category": "apparel and accessories",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1276/namshi.png",
"dominantColorCode": "#bfe2f6",
"distance": 0.0,
"externalId": "AC90",
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg",
"tasteMatchScore": 78,
"url": "https://en-ae.namshi.com/"
},
"offers": [
{
"id": "1682",
"name": "Get upto 15% discount on Namshi",
"description": "Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-14T00:00:00.389Z",
"validTo": "2023-02-14T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "ac143",
"image": "https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "http://www.namshi.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1682&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"offerType": "offline coupon",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": ""
}
},
{
"id": "1349",
"name": "Get exclusive offers on Namshi",
"description": "Get exclusive offers on Namshi\n1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-11T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"redeemed": false,
"claimed": false,
"currency": "",
"cashbackValue": 5.0,
"offerStatus": "active",
"url": "https://go.arabclicks.com/aff_c?offer_id=938&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1349&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
}
},
{
"id": "1886",
"name": "Get exclusive offers on Namshi",
"description": "Get exclusive offers on Namshi\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1276/namshi.png",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"redeemed": false,
"claimed": false,
"currency": "",
"cashbackValue": 3.2,
"offerStatus": "active",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1276&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1886&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
}
},
{
"id": "20916",
"name": "Get upto 20% discount on Namshi",
"description": "Get upto 20% discount on Namshi\n1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-02-13T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "OM123",
"image": "https://dpimages.crayondata.com/high-res-image/adib/namshi_product.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://en-ae.namshi.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AC90&subid2=20916&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"offerType": "offline coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "USD"
}
}
],
"tags": [
"jackets-and-blazers",
"outerwear",
"daily-clothing",
"fashion-jewellery",
"party-wear",
"footwear-store",
"swim-and-beach-wear",
"accessories-store",
"coats",
"clothing-store",
"inner-wear-and-lingerie",
"sneakers",
"basic-service",
"regular-retail-store",
"t-shirts",
"formal-wear",
"watch-store",
"modern",
"sandals",
"men-women-children-shoes",
"sunglasses",
"online-and-in-store",
"sweaters",
"formal-shoes",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"western-clothing",
"boots",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "634ea784-f4a6-4d02-8cda-0374e53823d6",
"name": "Newchic",
"description": "Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.",
"category": "apparel and accessories",
"active": true,
"properties": {
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"dominantColorCode": "#f0f0f0",
"distance": 0.0,
"externalId": "AD58",
"tasteMatchScoreReason": "Because you like home décor, you might like this too",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg",
"tasteMatchScore": 72,
"url": "http://www.newchic.com/"
},
"offers": [
{
"id": "19886",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "AMTDM20",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 12.0,
"offerStatus": "active",
"url": "https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=19886&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"offerType": "online coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "USD"
}
},
{
"id": "1633",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "NCAFF20",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 12.0,
"offerStatus": "active",
"url": "https://ad.admitad.com/g/7f3cxjm4yjd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1633&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"offerType": "online coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "USD"
}
},
{
"id": "1712",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "NCAFF15",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 12.0,
"offerStatus": "active",
"url": "https://ad.admitad.com/g/c50whdpob9d1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1712&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"offerType": "online coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "USD"
}
},
{
"id": "1597",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "NCAFF25",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 12.0,
"offerStatus": "active",
"url": "https://ad.admitad.com/g/luljs3wmayd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1597&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"offerType": "online coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "USD"
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"online",
"home-furnishings",
"apparel-and-accessories",
"international",
"pet-supplies",
"accessories-store",
"pet-and-pet-supplies",
"footwear-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.409653Z"
},
{
"id": "Aw8IbkXJSrKd0IMp0yFmEw",
"listName": "Deals of the day",
"listType": "TRENDING",
"totalCount": 10,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"distance": 0.0,
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too"
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"distance": 0.0,
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too"
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"distance": 0.0,
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too"
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"distance": 0.0,
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too"
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too"
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "3d541c25-6df9-4fd4-b5ce-8061a12abe67",
"name": "Ounass",
"description": "Many luxury fashion designers in the Middle East",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg",
"dominantColorCode": "#d5d5d7",
"externalId": "AC105",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"url": "https://www.ounass.com/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like home décor, you might like this too"
},
"offers": [
{
"id": "1362",
"name": "Get upto 6% cashback on Ounass",
"description": "Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1362&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1843",
"name": "Get upto 5% discount on Ounass",
"description": "Get upto 5% discount on Ounass\n1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-06-24T00:00:00.389Z",
"validTo": "2023-09-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "aco67",
"termsAndConditions": "1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ar.ounass.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1843&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1361",
"name": "Get exclusive offers on Ounass",
"description": "Get exclusive offers on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=194&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1361&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"home-furnishings",
"shoes-and-accessories-store",
"apparel-and-accessories",
"gifts-and-souvenirs",
"furniture",
"accessories-store",
"health-and-beauty",
"multi-brand",
"standalone-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4a28a630-e64f-4287-9713-47b46450cb38",
"name": "Toys R Us",
"description": "Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don\u2019t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We\u2019re always growing and we\u2019ll have more stores and online stores opening in the region soon \u2013 we can\u2019t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC55",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"url": "https://www.toysrusmena.com/en-AE/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too"
},
"offers": [
{
"id": "842",
"name": "Get exclusive offers on Toys R Us",
"description": "Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC55&aff_sub3=842&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"video-games",
"party-supplies",
"bicycle-and-accessories",
"art-and-craft-supplies",
"multi-brand",
"costumes",
"sporting-equipment",
"online-and-in-store",
"toys-and-games",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"kids-utilities",
"games",
"international",
"shopping-mall",
"computer-and-electronics",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "58ab63ee-12e3-4d54-a9cc-3ea7619a8221",
"name": "Soukare",
"description": "souKare is one of the largest online stores for colored contact lenses.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg",
"dominantColorCode": "#e5f2fb",
"externalId": "AC124",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"url": "https://soukare.com/ar-sa/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too"
},
"offers": [
{
"id": "1389",
"name": "Get upto 5% cashback on Soukare",
"description": "Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC124&aff_sub3=1389&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"perfumery",
"health-and-beauty",
"multi-brand",
"standalone-store",
"personal-care",
"online-and-in-store",
"nutritional-supplements",
"pharmacy",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "5522bff7-cb39-4f35-bf89-c11cfd4b258b",
"name": "Bath And Body Works",
"description": "For over 20 years, Bath & Body Works creates incredible scents and offers to the customers hundreds of quality products. Customers look to Bath & Body Works for quality, on-trend products and the newest, freshest fragrances. Pampering collections such as Cocoa Shea, Fragrances with Essential Oils, and Aromatherapy simply add to the charm, whilst the Men's Collection includes masculine fragrances to clean, refresh and soften skin",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD408_1_Bath_&_Body_Works_New_Image.jpg",
"dominantColorCode": "#ded7d0",
"externalId": "AD408",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Bath-Body-Works-Logo.png",
"url": "https://www.bathandbodyworks.ae/en/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste"
},
"offers": [
{
"id": "1410",
"name": "Get upto 14% cashback on Bath & Body Works",
"description": "Get upto 14% cashback on Bath & Body Works\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/460/adv_bathandbodyworks_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=460&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AD408&aff_sub3=1410&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AD408&aff_sub3=1410&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste"
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.410105Z"
},
{
"id": "sgxjtdEXRhKVSWkQzY_ABA",
"listName": "Best-selling offers",
"listType": "POPULARITY",
"totalCount": 10,
"items": [
{
"item": {
"id": "8affa868-b20c-4e20-ba77-84b0679e683b",
"name": "Babysouk",
"description": "babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png",
"dominantColorCode": "#ffffff",
"externalId": "DC9",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"url": "https://www.babysouk.com/",
"distance": 0.0,
"tasteMatchScore": 84,
"tasteMatchScoreReason": "Because you like fashion, you might like this too"
},
"offers": [
{
"id": "839",
"name": "Get exclusive offers on Babysouk",
"description": "Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC9&aff_sub3=839&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"multi-brand",
"online-and-in-store",
"travel-utilities",
"large-product-range",
"home-and-kitchen",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"kids-furniture",
"accessories-store",
"travel-accessories",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "12ba32e1-6757-4ab3-ad71-a00f8144c730",
"name": "Ferns N Petals",
"description": "Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg",
"dominantColorCode": "#d1b4ad",
"externalId": "DC26",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"url": "https://www.fnp.ae/",
"distance": 0.0,
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like confectioneries, you might like this too"
},
"offers": [
{
"id": "1758",
"name": "Get upto 8% cashback on Ferns N Petals",
"description": "Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"basic-service",
"international",
"chocolates",
"gifts-and-souvenirs",
"florist",
"food-beverages-and-groceries",
"dry-fruits-and-nuts",
"confectionery",
"delivery-service",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "10101386-6f01-4f71-b603-ea46c20f2eb8",
"name": "Brands For Less",
"description": "The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg",
"dominantColorCode": "#00adcb",
"externalId": "DC13",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"url": "https://www.brandsforless.ae/",
"distance": 0.0,
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too"
},
"offers": [
{
"id": "830",
"name": "Get upto 1.5% cashback on Brands For Less",
"description": "Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-11-22T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"perfumery",
"kitchen-appliances",
"automobile-and-accessories",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"online-and-in-store",
"footwear-store",
"computer-and-accessories",
"department-store",
"home-and-kitchen",
"home-furnishings",
"apparel-and-accessories",
"international",
"accessories-store",
"shopping-mall",
"mobile-phones",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "47bf1663-a2e5-4156-afaa-d80cd1d4d8fb",
"name": "Namshi",
"description": "Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg",
"dominantColorCode": "#bfe2f6",
"externalId": "AC90",
"image": "https://media.go2speed.org/brand/files/dcm/1276/namshi.png",
"url": "https://en-ae.namshi.com/",
"distance": 0.0,
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like fashion, you might like this too"
},
"offers": [
{
"id": "1682",
"name": "Get upto 15% discount on Namshi",
"description": "Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-14T00:00:00.389Z",
"validTo": "2023-02-14T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ac143",
"termsAndConditions": "1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "http://www.namshi.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1682&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1349",
"name": "Get exclusive offers on Namshi",
"description": "Get exclusive offers on Namshi\n1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-11T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=938&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1349&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1886",
"name": "Get exclusive offers on Namshi",
"description": "Get exclusive offers on Namshi\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1276/namshi.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1276&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1886&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "20916",
"name": "Get upto 20% discount on Namshi",
"description": "Get upto 20% discount on Namshi\n1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-02-13T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/namshi_product.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "OM123",
"termsAndConditions": "1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://en-ae.namshi.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AC90&subid2=20916&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"jackets-and-blazers",
"outerwear",
"daily-clothing",
"fashion-jewellery",
"party-wear",
"footwear-store",
"swim-and-beach-wear",
"accessories-store",
"coats",
"clothing-store",
"inner-wear-and-lingerie",
"sneakers",
"basic-service",
"regular-retail-store",
"t-shirts",
"formal-wear",
"watch-store",
"modern",
"sandals",
"men-women-children-shoes",
"sunglasses",
"online-and-in-store",
"sweaters",
"formal-shoes",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"western-clothing",
"boots",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "cb1bdc8b-4b53-43b8-b4c2-00638dc1d7df",
"name": "Rivoli Shop",
"description": "Rivoli encompasses a wide spectrum of all things premium such as watches, eyewear, jewelry, leather accessories and writing instruments.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC116_1_Rivoli_Shop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC116",
"image": "https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg",
"url": "https://rivolishop.com/",
"distance": 0.0,
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too"
},
"offers": [
{
"id": "1378",
"name": "Get upto 4% cashback on Rivoli Shop",
"description": "Get upto 4% cashback on Rivoli Shop\n1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-05-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=665&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"large-product-range",
"luxury-watches",
"designer-labels",
"watch-store",
"boutique-store",
"accessories-store",
"modern",
"fashion-watches",
"fitness-watches",
"smart-watches",
"online-and-in-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dffc64f3-a8f1-4fbf-82a3-370a0c3999a7",
"name": "Amazon",
"description": "Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png",
"dominantColorCode": "#eaeceb",
"externalId": "AC8",
"image": "https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg",
"url": "https://www.amazon.sa",
"distance": 0.0,
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like kitchen essentials, you might like this too"
},
"offers": [
{
"id": "13843",
"name": "Get upto 8.4AED cashback on Amazon Home Services Bounty",
"description": "Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-02-19T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC8&aff_sub3=13843&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"video-games",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"footwear-store",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"accessories-store",
"computer-and-electronics",
"clothing-store",
"travel-accessories",
"groceries",
"basic-service",
"hypermarket",
"kitchen-appliances",
"pet-supplies",
"furniture",
"sporting-equipment",
"music-store",
"computer-and-accessories",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"gifts-and-souvenirs",
"mobile-phones",
"cosmetics-and-skincare",
"books",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4248f84c-bbca-425c-b193-211ca80dff51",
"name": "Aliexpress",
"description": "Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg",
"dominantColorCode": "#ced1d8",
"externalId": "AC7",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"url": "https://ar.aliexpress.com/",
"distance": 0.0,
"tasteMatchScore": 74,
"tasteMatchScoreReason": "Because you like department stores, you might like this too"
},
"offers": [
{
"id": "1357",
"name": "Get upto 9% cashback on Aliexpress",
"description": "Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"kitchen-appliances",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"sports-and-outdoors",
"department-store",
"online",
"apparel-and-accessories",
"games",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "0eb0da82-d526-4b58-8a69-713451de1114",
"name": "American Eagle",
"description": "American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg",
"dominantColorCode": "#e6e6e6",
"externalId": "AC11",
"image": "https://media.go2speed.org/brand/files/dcm/1349/download (3).png",
"url": "https://www.americaneagle.com.sa/en/",
"distance": 0.0,
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like fashion, you might like this too"
},
"offers": [
{
"id": "1367",
"name": "Get upto 14% cashback on American Eagle",
"description": "Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "13594",
"name": "Get exclusive offers on American Eagle",
"description": "Get exclusive offers on American Eagle\n1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-04-02T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1349/download (3).png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1349&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"regular-retail-store",
"winter-wear",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"modern",
"daily-clothing",
"sunglasses",
"online-and-in-store",
"sweaters",
"footwear-store",
"large-product-range",
"flipflops",
"dresses",
"occasional-clothing",
"accessories-store",
"coats",
"casual-wear",
"casual-shoes",
"clothing-store",
"shirts",
"western-clothing",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "89531d1e-212d-42dd-a3eb-cc740cd34ebe",
"name": "Banggood",
"description": "Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC19",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png",
"url": "https://www.banggood.com/",
"distance": 0.0,
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too"
},
"offers": [
{
"id": "1370",
"name": "Get upto 22% cashback on Banggood",
"description": "Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 22.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC19&aff_sub3=1370&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"hardware",
"stationery",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"sports-and-outdoors",
"department-store",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"apparel-and-accessories",
"international",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"personal-care",
"tools-and-home-improvement",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "634ea784-f4a6-4d02-8cda-0374e53823d6",
"name": "Newchic",
"description": "Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg",
"dominantColorCode": "#f0f0f0",
"externalId": "AD58",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"url": "http://www.newchic.com/",
"distance": 0.0,
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like home décor, you might like this too"
},
"offers": [
{
"id": "19886",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AMTDM20",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=19886&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1633",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "NCAFF20",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/7f3cxjm4yjd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1633&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1712",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "NCAFF15",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/c50whdpob9d1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1712&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1597",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "NCAFF25",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/luljs3wmayd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1597&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"online",
"home-furnishings",
"apparel-and-accessories",
"international",
"pet-supplies",
"accessories-store",
"pet-and-pet-supplies",
"footwear-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.41067Z"
},
{
"id": "Ci1JAuHpT3m4WvTEkQmKkg",
"listName": "Because you are interested in electronic accessories & fashion",
"listType": "TAG_BASED",
"totalCount": 10,
"items": [
{
"item": {
"id": "12ba32e1-6757-4ab3-ad71-a00f8144c730",
"name": "Ferns N Petals",
"description": "Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg",
"dominantColorCode": "#d1b4ad",
"externalId": "DC26",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"url": "https://www.fnp.ae/",
"distance": 0.0,
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like confectioneries, you might like this too"
},
"offers": [
{
"id": "1758",
"name": "Get upto 8% cashback on Ferns N Petals",
"description": "Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"basic-service",
"international",
"chocolates",
"gifts-and-souvenirs",
"florist",
"food-beverages-and-groceries",
"dry-fruits-and-nuts",
"confectionery",
"delivery-service",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "10101386-6f01-4f71-b603-ea46c20f2eb8",
"name": "Brands For Less",
"description": "The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg",
"dominantColorCode": "#00adcb",
"externalId": "DC13",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"url": "https://www.brandsforless.ae/",
"distance": 0.0,
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too"
},
"offers": [
{
"id": "830",
"name": "Get upto 1.5% cashback on Brands For Less",
"description": "Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-11-22T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"perfumery",
"kitchen-appliances",
"automobile-and-accessories",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"online-and-in-store",
"footwear-store",
"computer-and-accessories",
"department-store",
"home-and-kitchen",
"home-furnishings",
"apparel-and-accessories",
"international",
"accessories-store",
"shopping-mall",
"mobile-phones",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "55b64dbc-0e2e-46be-9de3-530621c29668",
"name": "Ssense",
"description": "Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg",
"dominantColorCode": "#090806",
"externalId": "AC128",
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"url": "https://www.ssense.com/",
"distance": 0.0,
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like fashion, you might like this too"
},
"offers": [
{
"id": "1383",
"name": "Get upto 5% cashback on Ssense",
"description": "Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "HKD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC128&aff_sub3=1383&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"basic-service",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"sleep-wear",
"others",
"footwear-store",
"swim-and-beach-wear",
"bags-and-wallets",
"large-product-range",
"jewellery-store",
"accessories-store",
"casual-wear",
"clothing-store",
"loafers",
"inner-wear-and-lingerie",
"boots",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "cb1bdc8b-4b53-43b8-b4c2-00638dc1d7df",
"name": "Rivoli Shop",
"description": "Rivoli encompasses a wide spectrum of all things premium such as watches, eyewear, jewelry, leather accessories and writing instruments.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC116_1_Rivoli_Shop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC116",
"image": "https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg",
"url": "https://rivolishop.com/",
"distance": 0.0,
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too"
},
"offers": [
{
"id": "1378",
"name": "Get upto 4% cashback on Rivoli Shop",
"description": "Get upto 4% cashback on Rivoli Shop\n1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-05-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=665&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"large-product-range",
"luxury-watches",
"designer-labels",
"watch-store",
"boutique-store",
"accessories-store",
"modern",
"fashion-watches",
"fitness-watches",
"smart-watches",
"online-and-in-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4248f84c-bbca-425c-b193-211ca80dff51",
"name": "Aliexpress",
"description": "Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg",
"dominantColorCode": "#ced1d8",
"externalId": "AC7",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"url": "https://ar.aliexpress.com/",
"distance": 0.0,
"tasteMatchScore": 74,
"tasteMatchScoreReason": "Because you like department stores, you might like this too"
},
"offers": [
{
"id": "1357",
"name": "Get upto 9% cashback on Aliexpress",
"description": "Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"kitchen-appliances",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"sports-and-outdoors",
"department-store",
"online",
"apparel-and-accessories",
"games",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "0eb0da82-d526-4b58-8a69-713451de1114",
"name": "American Eagle",
"description": "American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg",
"dominantColorCode": "#e6e6e6",
"externalId": "AC11",
"image": "https://media.go2speed.org/brand/files/dcm/1349/download (3).png",
"url": "https://www.americaneagle.com.sa/en/",
"distance": 0.0,
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like fashion, you might like this too"
},
"offers": [
{
"id": "1367",
"name": "Get upto 14% cashback on American Eagle",
"description": "Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "13594",
"name": "Get exclusive offers on American Eagle",
"description": "Get exclusive offers on American Eagle\n1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-04-02T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1349/download (3).png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1349&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"regular-retail-store",
"winter-wear",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"modern",
"daily-clothing",
"sunglasses",
"online-and-in-store",
"sweaters",
"footwear-store",
"large-product-range",
"flipflops",
"dresses",
"occasional-clothing",
"accessories-store",
"coats",
"casual-wear",
"casual-shoes",
"clothing-store",
"shirts",
"western-clothing",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "0e105a12-1c52-4be7-ba47-3764397bfcf5",
"name": "The Luxury Closet",
"description": "Shop New & Pre-Loved Authentic Designer Bags. $50 off first order. Free Shipping Worldwide.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC53_1_The_Luxury_Closet_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC53",
"image": "https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg",
"url": "https://theluxurycloset.com/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too"
},
"offers": [
{
"id": "821",
"name": "Get upto 3% cashback on The Luxury Closet",
"description": "Get upto 3% cashback on The Luxury Closet\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=318&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"necklaces",
"scarfs-and-shawls",
"wallets",
"jackets-and-blazers",
"casual-bags",
"fashion-jewellery",
"daily-clothing",
"thermal-wear",
"footwear-store",
"online",
"jewellery-store",
"jeans",
"gold",
"accessories-store",
"coats",
"clothing-store",
"satchels-and-shoulder-bags",
"sneakers",
"basic-service",
"regular-retail-store",
"t-shirts",
"winter-wear",
"flats",
"men-and-women's-shoes",
"bracelets",
"fine-jewellery",
"men-and-women's-clothing",
"backpacks",
"sunglasses",
"rings",
"totes",
"sweaters",
"clutches",
"large-product-range",
"suits",
"bags-and-wallets",
"pants",
"belts",
"casual-wear",
"casual-shoes",
"loafers",
"shirts",
"boots"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "d67c656f-04a0-4e11-9b66-4ab180004234",
"name": "Danube Home",
"description": "Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region\u2019s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC269",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"url": "https://uae.danubehome.com/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like kitchen essentials, you might like this too"
},
"offers": [
{
"id": "1350",
"name": "Get exclusive offers on Danube Home",
"description": "Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-11-10T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.9,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1350&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1539",
"name": "Get upto 50% discount on Danube Home",
"description": "Get upto 50% discount on Danube Home\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/danubehome_offer.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AFYZTMC",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://uae.danubehome.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1539&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"hardware",
"kitchen-appliances",
"home-improvement-supplies",
"furniture",
"health-and-beauty",
"multi-brand",
"online-and-in-store",
"toys-and-games",
"toys",
"plant-nursery",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"international",
"apparel-and-accessories",
"kitchen-accessories",
"kids-utilities",
"gardening-supplies",
"games",
"paint-supplies",
"cosmetics-and-skincare",
"personal-care",
"tools-and-home-improvement",
"delivery-service",
"fertilizer",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dcd9f833-e362-3d15-b0c4-501f4df657d8",
"name": "Saramart",
"description": "Buy products for the best prices with free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg",
"dominantColorCode": "#909193",
"externalId": "DC49",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png",
"url": "APP ONLY",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like stationery, you might like this too"
},
"offers": [
{
"id": "2113",
"name": "Get upto 20% discount on Saramart",
"description": "Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SM118",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=DC49&subid2=2113&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"multi-brand",
"automobile-and-accessories",
"clothing-store",
"hardware",
"home-audio-and-accessories",
"personal-care",
"art-and-craft-supplies",
"video-games",
"stationery",
"toys",
"plant-nursery",
"toys-and-games",
"large-product-range",
"home-appliances",
"regular-retail-store",
"mobile-phones",
"cosmetics-and-skincare",
"health-and-beauty",
"international",
"art-and-craft-supplies",
"basic-service",
"school-and-office-supplies",
"fertilizer",
"kitchen-appliances",
"home-furnishings",
"kitchen-accessories",
"apparel-and-accessories",
"home-and-kitchen",
"tools-and-home-improvement",
"perfumery",
"online-and-in-store",
"computer-and-electronics",
"accessories-store",
"home-improvement-supplies",
"kids-utilities",
"gardening-supplies",
"games",
"shoes-and-accessories-store",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "95519a75-e922-37c5-ba24-18c9202d1a38",
"name": "Bellelily",
"description": "Welcome to Bellelily.com, a one-stop online shop featuring the latest in women's fashion, home decor and more. Our commitment is to provide a wide range of high quality affordable collections along with a class-leading customer service experience to our customers.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD7_3_Bellelily_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD7",
"image": "http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png",
"url": "https://www.bellelily.com/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too"
},
"offers": [
{
"id": "9191",
"name": "Get exclusive offers on Bellelily",
"description": "Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 13.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "LOVE",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/bziamb92n9d1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=9191&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "9192",
"name": "Get exclusive offers on Bellelily",
"description": "Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 13.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "LOVE",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/b2fr0qvnnld1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=9192&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6084",
"name": "Get exclusive offers on Bellelily",
"description": "Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-30T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 13.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "NEW2022",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/36anflhc7pd1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=6084&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6184",
"name": "Get exclusive offers on Bellelily",
"description": "Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-30T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 13.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "NEW2022",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/gzp5q5vbusd1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=6184&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6067",
"name": "Get exclusive offers on Bellelily",
"description": "Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-30T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 13.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "NEW2022",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/09nm20a6i2d1931805360ab011a33f/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD7&subid2=6067&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"flats",
"online",
"large-product-range",
"casual-bags",
"hair-accessories",
"bags-and-wallets",
"cardigans",
"basic-service",
"boots",
"jewellery-store",
"men-and-women's-clothing",
"belts",
"clothing-store",
"swim-and-beach-wear",
"heels",
"bracelets",
"others",
"t-shirts",
"plus-size",
"casual-shoes",
"dresses",
"daily-clothing",
"flipflops",
"inner-wear-and-lingerie",
"scarfs-and-shawls",
"jeans",
"women's-shoes",
"fashion-jewellery",
"sunglasses",
"jackets-and-blazers",
"loafers",
"accessories-store",
"necklaces",
"totes",
"casual-wear",
"regular-retail-store",
"sweaters",
"pants",
"western-clothing",
"footwear-store",
"modern",
"rings",
"active-and-sports-wear",
"shirts",
"winter-wear",
"outerwear",
"sneakers",
"minimalistic"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.411315Z"
},
{
"id": "-5k8sfgrTYeIqZLIvQM5Dg",
"listName": "What\u2019s new in toys, games & fashion",
"listType": "DISCOVERY",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"distance": 0.0,
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too"
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"distance": 0.0,
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too"
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"distance": 0.0,
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too"
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"distance": 0.0,
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too"
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too"
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"distance": 0.0,
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste"
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.411678Z"
},
{
"id": "N-wRdOfXQliqBSbuvtjqMw",
"listName": "Season of love",
"listType": "202107",
"totalCount": 2,
"items": [
{
"item": {
"id": "42c04e94-9d07-4db2-a527-3bdbd848b62e",
"name": "Rosemary Perfumes",
"description": "The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg",
"dominantColorCode": "#becdd8",
"externalId": "DC48",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png",
"url": "https://www.rosemaryperfumes.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13838",
"name": "Get exclusive offers on Rose Mary Perfumes",
"description": "Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-02-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"perfumery",
"local",
"shopping-mall",
"health-and-beauty",
"multi-brand",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "07fa5146-8150-42a8-a89a-227304309fe2",
"name": "Ubuy",
"description": "Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount",
"category": "retail stores",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC150",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg",
"url": "https://www.ubuy.com",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like musical instruments, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "890",
"name": "Get exclusive offers on Ubuy",
"description": "Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "",
"cashbackValue": 2.5,
"offerStatus": "active",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=890&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
},
{
"id": "1754",
"name": "Get upto 10% discount on Ubuy using",
"description": "Get upto 10% discount on Ubuy using\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-27T00:00:00.389Z",
"validTo": "2023-02-12T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "uban242",
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "",
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1754&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"claimed": false,
"redeemed": false
}
},
{
"id": "1341",
"name": "Get exclusive offers on Ubuy",
"description": "Get exclusive offers on Ubuy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "",
"cashbackValue": 5.0,
"offerStatus": "active",
"url": "https://go.arabclicks.com/aff_c?offer_id=939&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1341&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
},
{
"id": "1909",
"name": "Get upto 10% discount on Ubuy",
"description": "Get upto 10% discount on Ubuy\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-27T00:00:00.389Z",
"validTo": "2023-02-12T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "uban230",
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "",
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1909&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"perfumery",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"cameras-and-accessories",
"multi-brand",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"international",
"kids-utilities",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"computer-and-electronics",
"travel-accessories",
"groceries",
"regular-retail-store",
"basic-service",
"home-improvement-supplies",
"pet-supplies",
"furniture",
"home-audio-and-accessories",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"books",
"musical-instrument",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.411926Z"
}
]
}
Scenario: [9.1:147]
To validate the response for category choices list
ms: 1325
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:03.751 karate.env system property was: null
20:57:03.751 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
137
Given headers req_headers
0
138
And url baseUrl
0
139
And path choiceApiUrl
0
140
And request {category:apparel and accessories, choiceCount:10, lang:en,city:dubai,includeCampaigns:true,servedAt:2022-04-06T23:59:59.000+00:00, }
0
141
When method Post
1312
20:57:03.756 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/choice/list
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 149
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"category":"apparel and accessories","choiceCount":10,"lang":"en","city":"dubai","includeCampaigns":true,"servedAt":"2022-04-06T23:59:59.000+00:00"}
20:57:05.064 response time in milliseconds: 1300
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:04 GMT
{"id":"sTZ_ZJjuTkKBn4ZsDtRnGQ","choices":[{"id":"Yow8KlhGQ6OGReJdZdNfjw","listName":"Recently viewed","listType":"RESUME","totalCount":3,"items":[{"item":{"id":"55b64dbc-0e2e-46be-9de3-530621c29668","name":"Ssense","description":"Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.","category":"apparel and accessories","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","dominantColorCode":"#090806","distance":0.0,"externalId":"AC128","tasteMatchScoreReason":"Because you like fashion, you might like this too","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg","tasteMatchScore":78,"url":"https://www.ssense.com/"},"offers":[{"id":"1383","name":"Get upto 5% cashback on Ssense","description":"Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","offerType":"cashback","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","redeemed":false,"claimed":false,"currency":"HKD","cashbackValue":5.0,"offerStatus":"active","url":"https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC128&aff_sub3=1383&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"}}],"tags":["regular-retail-store","basic-service","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","sleep-wear","others","footwear-store","swim-and-beach-wear","bags-and-wallets","large-product-range","jewellery-store","accessories-store","casual-wear","clothing-store","loafers","inner-wear-and-lingerie","boots","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"47bf1663-a2e5-4156-afaa-d80cd1d4d8fb","name":"Namshi","description":"Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.","category":"apparel and accessories","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1276/namshi.png","dominantColorCode":"#bfe2f6","distance":0.0,"externalId":"AC90","tasteMatchScoreReason":"Because you like fashion, you might like this too","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg","tasteMatchScore":78,"url":"https://en-ae.namshi.com/"},"offers":[{"id":"1682","name":"Get upto 15% discount on Namshi","description":"Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-14T00:00:00.389Z","validTo":"2023-02-14T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"ac143","image":"https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":0.0,"offerStatus":"active","url":"http://www.namshi.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1682&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","offerType":"offline coupon","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":""}},{"id":"1349","name":"Get exclusive offers on Namshi","description":"Get exclusive offers on Namshi\n1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-11T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","redeemed":false,"claimed":false,"currency":"","cashbackValue":5.0,"offerStatus":"active","url":"https://go.arabclicks.com/aff_c?offer_id=938&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1349&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."}},{"id":"1886","name":"Get exclusive offers on Namshi","description":"Get exclusive offers on Namshi\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1276/namshi.png","offerType":"online coupon","payoutType":"cpa_flat","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","redeemed":false,"claimed":false,"currency":"","cashbackValue":3.2,"offerStatus":"active","url":"http://go.urtrackinglink.com/aff_c?offer_id=1276&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1886&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."}},{"id":"20916","name":"Get upto 20% discount on Namshi","description":"Get upto 20% discount on Namshi\n1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-02-13T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"OM123","image":"https://dpimages.crayondata.com/high-res-image/adib/namshi_product.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":0.0,"offerStatus":"active","url":"https://en-ae.namshi.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AC90&subid2=20916&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","offerType":"offline coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"USD"}}],"tags":["jackets-and-blazers","outerwear","daily-clothing","fashion-jewellery","party-wear","footwear-store","swim-and-beach-wear","accessories-store","coats","clothing-store","inner-wear-and-lingerie","sneakers","basic-service","regular-retail-store","t-shirts","formal-wear","watch-store","modern","sandals","men-women-children-shoes","sunglasses","online-and-in-store","sweaters","formal-shoes","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","western-clothing","boots","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"634ea784-f4a6-4d02-8cda-0374e53823d6","name":"Newchic","description":"Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.","category":"apparel and accessories","active":true,"properties":{"image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","dominantColorCode":"#f0f0f0","distance":0.0,"externalId":"AD58","tasteMatchScoreReason":"Because you like international brands, you might like this too","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg","tasteMatchScore":72,"url":"http://www.newchic.com/"},"offers":[{"id":"19886","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"AMTDM20","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":12.0,"offerStatus":"active","url":"https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=19886&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","offerType":"online coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"USD"}},{"id":"1633","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"NCAFF20","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":12.0,"offerStatus":"active","url":"https://ad.admitad.com/g/7f3cxjm4yjd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1633&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","offerType":"online coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"USD"}},{"id":"1712","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"NCAFF15","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":12.0,"offerStatus":"active","url":"https://ad.admitad.com/g/c50whdpob9d1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1712&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","offerType":"online coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"USD"}},{"id":"1597","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"NCAFF25","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","payoutType":"cpa_percentage","redeemed":false,"claimed":false,"cashbackValue":12.0,"offerStatus":"active","url":"https://ad.admitad.com/g/luljs3wmayd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1597&subid3=crayon","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","offerType":"online coupon","offerSource":"Admitad","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"USD"}}],"tags":["regular-retail-store","home-and-kitchen","online","home-furnishings","apparel-and-accessories","international","pet-supplies","accessories-store","pet-and-pet-supplies","footwear-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.450999Z"},{"id":"-kv0YXTlTcSSkLaLhYklFA","listName":"Best-selling offers","listType":"POPULARITY","totalCount":10,"items":[{"item":{"id":"cb1bdc8b-4b53-43b8-b4c2-00638dc1d7df","name":"Rivoli Shop","description":"Rivoli encompasses a wide spectrum of all things premium such as watches, eyewear, jewelry, leather accessories and writing instruments.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC116_1_Rivoli_Shop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC116","image":"https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg","url":"https://rivolishop.com/","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"1378","name":"Get upto 4% cashback on Rivoli Shop","description":"Get upto 4% cashback on Rivoli Shop\n1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-05-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=665&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["large-product-range","luxury-watches","designer-labels","watch-store","boutique-store","accessories-store","modern","fashion-watches","fitness-watches","smart-watches","online-and-in-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"0eb0da82-d526-4b58-8a69-713451de1114","name":"American Eagle","description":"American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg","dominantColorCode":"#e6e6e6","externalId":"AC11","image":"https://media.go2speed.org/brand/files/dcm/1349/download (3).png","url":"https://www.americaneagle.com.sa/en/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1367","name":"Get upto 14% cashback on American Eagle","description":"Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"13594","name":"Get exclusive offers on American Eagle","description":"Get exclusive offers on American Eagle\n1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-04-02T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1349/download (3).png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1349&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","regular-retail-store","winter-wear","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","modern","daily-clothing","sunglasses","online-and-in-store","sweaters","footwear-store","large-product-range","flipflops","dresses","occasional-clothing","accessories-store","coats","casual-wear","casual-shoes","clothing-store","shirts","western-clothing","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"35d9cbfc-d31e-43c9-b199-8ff198ca1c04","name":"Nayomi","description":"Nayomi brings you a multitude of women's lingerie for all tastes and all forms, that way you will be sure not to go wrong with a lace bra while opting for the best support.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC91_1_Nayomi_New_Image.jpg","dominantColorCode":"#0e0604","externalId":"AC91","image":"https://media.go2speed.org/brand/files/arabclicks/833/adv_nayomi_icon.jpg","url":"https://www.nayomi.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1380","name":"Get exclusive offers on Nayomi","description":"Get exclusive offers on Nayomi\n1. The offer is valid upto 2024-07-02\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-07-02T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/833/adv_nayomi_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2024-07-02\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=833&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC91&aff_sub3=1380&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["swim-and-beach-wear","international","women's-clothing","outerwear","casual-wear","sleep-wear","daily-clothing","clothing-store","inner-wear-and-lingerie","online-and-in-store","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9c70a451-cd1e-4d40-973f-3864ac475e1f","name":"H&M","description":"The H&M group is one of the world?��s leading fashion companies ?�� with the brands H&M and H&M Home, COS, & Other Stories, Monki, Weekday Cheap Monday and ARKET.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC59_1_H&M_New_Image.jpg","dominantColorCode":"#ededed","externalId":"AC59","image":"https://media.go2speed.org/brand/files/dcm/158/800px-H&M-Logo.svg.png","url":"https://ae.hm.com/en/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1345","name":"Get upto 10% cashback on H&M","description":"Get upto 10% cashback on H&M\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/405/adv_hm_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=405&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC59&aff_sub3=1345&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"872","name":"Get exclusive offers on H&M","description":"Get exclusive offers on H&M\n1. The offer is valid upto 2039-12-21\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-12-21T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.7,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/158/800px-H&M-Logo.svg.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2039-12-21\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=158&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC59&aff_sub3=872&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"13363","name":"Get exclusive offers on H&M","description":"Get exclusive offers on H&M\n1. The offer is valid upto 2023-10-16\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-10-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/449/adv_hm_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-10-16\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=449&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC59&aff_sub3=13363&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["other-styles","jackets-and-blazers","outerwear","sleep-wear","daily-clothing","fashion-jewellery","loungewear","footwear-store","swim-and-beach-wear","dresses","cardigans","jeans","accessories-store","jewellery-store","maternity-wear","coats","plus-size","clothing-store","inner-wear-and-lingerie","regular-retail-store","basic-service","winter-wear","modern","sandals","men-women-children-shoes","online-and-in-store","others","large-product-range","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"634ea784-f4a6-4d02-8cda-0374e53823d6","name":"Newchic","description":"Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg","dominantColorCode":"#f0f0f0","externalId":"AD58","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","url":"http://www.newchic.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"19886","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"AMTDM20","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=19886&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1633","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"NCAFF20","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/7f3cxjm4yjd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1633&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1712","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"NCAFF15","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/c50whdpob9d1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1712&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1597","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-05-26T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"NCAFF25","termsAndConditions":"1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/luljs3wmayd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1597&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","home-and-kitchen","online","home-furnishings","apparel-and-accessories","international","pet-supplies","accessories-store","pet-and-pet-supplies","footwear-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"ebf22cb5-7dbf-44db-a2a7-1b9f3c082879","name":"Ontime","description":"Shop Trendy Stylish Designer Watches, Jewelry, Handbags online at Ontime.com for Men, Women and Kids at great price","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC44_1_Ontime_New_Image.jpg","dominantColorCode":"#0c0c0c","externalId":"DC44","image":"https://media.go2speed.org/brand/files/arabclicks/807/adv_ontime_icon.jpg","url":"https://www.ontime.com","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"1502","name":"Get upto 15USD discount on Ontime","description":"Get upto 15USD discount on Ontime\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/ontime%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"AB121","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://www.ontime.com/ae/en/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC44&aff_sub3=1502&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC44&aff_sub3=1502&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["necklaces","wallets","jackets-and-blazers","casual-bags","fashion-jewellery","daily-clothing","thermal-wear","footwear-store","online","flipflops","international","jewellery-store","accessories-store","smart-watches","clothing-store","satchels-and-shoulder-bags","sneakers","t-shirts","regular-retail-store","basic-service","winter-wear","watch-store","bracelets","sandals","men-women-children-shoes","backpacks","rings","sweaters","clutches","large-product-range","bags-and-wallets","luxury-watches","casual-wear","casual-shoes","loafers","shirts","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dd4d78da-8498-4db8-be1e-a453819ecb67","name":"Mikyajy","description":"Welcome to the colorful world of Mikyajy! Since its inception 20 years ago as a pioneer in Khaleeji color cosmetics and fragrance, Mikyajy has grown into a closely-knit family of 1.5 million loyal fans across Saudi Arabia, the UAE, Oman, Bahrain, Kuwait and Qatar!","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC610_1_Mikyajy_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC610","image":"https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg","url":"https://mikyajy.com/ksa_en/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"1411","name":"Get exclusive offers on Mikyajy","description":"Get exclusive offers on Mikyajy\n1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-07-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.arabclicks.com/aff_c?offer_id=963&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC610&aff_sub3=1411&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC610&aff_sub3=1411&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","perfumery","health-and-beauty","multi-brand","online-and-in-store","travel-utilities","international","gifts-and-souvenirs","shopping-mall","cosmetics-and-skincare","travel-accessories","personal-care","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"1d160c08-8e49-4330-afde-18b40a35e149","name":"Level Shoes","description":"Level Shoes is a globally recognised retail concept and destination dedicated to the world of designer footwear and accessories","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC77_1_Level_Shoes_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC77","image":"https://media.go2speed.org/brand/files/arabclicks/86/adv_levelshoes_icon.jpg","url":"https://www.levelshoes.com","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1355","name":"Get upto 10% cashback on Level Shoes","description":"Get upto 10% cashback on Level Shoes\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/86/adv_levelshoes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=86&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC77&aff_sub3=1355&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC77&aff_sub3=1355&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["flats","wallets","formal-bags","modern","casual-bags","sandals","men-women-children-shoes","sling-bags","designer-label","online-and-in-store","footwear-store","large-product-range","bags-and-wallets","price-unknown","flipflops","factory-outlet","international","heels","formal-shoes","jewellery-store","accessories-store","casual-shoes","satchels-and-shoulder-bags","loafers","sneakers","boots","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"0e105a12-1c52-4be7-ba47-3764397bfcf5","name":"The Luxury Closet","description":"Shop New & Pre-Loved Authentic Designer Bags. $50 off first order. Free Shipping Worldwide.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC53_1_The_Luxury_Closet_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC53","image":"https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg","url":"https://theluxurycloset.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"821","name":"Get upto 3% cashback on The Luxury Closet","description":"Get upto 3% cashback on The Luxury Closet\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=318&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["necklaces","scarfs-and-shawls","wallets","jackets-and-blazers","casual-bags","fashion-jewellery","daily-clothing","thermal-wear","footwear-store","online","jewellery-store","jeans","gold","accessories-store","coats","clothing-store","satchels-and-shoulder-bags","sneakers","basic-service","regular-retail-store","t-shirts","winter-wear","flats","men-and-women's-shoes","bracelets","fine-jewellery","men-and-women's-clothing","backpacks","sunglasses","rings","totes","sweaters","clutches","large-product-range","suits","bags-and-wallets","pants","belts","casual-wear","casual-shoes","loafers","shirts","boots"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7431b5de-0043-49ef-b586-e7e09a388ef2","name":"Metro Brazil","description":"ENJOY A WIDE RANGE OF HIGH-END BRAZILIAN CORSETS, SPORTSWEAR, ACCESSORIES AND LUXURIOUS LINGERIE","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC83_1_Metro_Brazil_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC83","image":"https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg","url":"https://ar.metrobrazil.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1365","name":"Get upto 14% cashback on Metro Brazil","description":"Get upto 14% cashback on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=773&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1365&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1365&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1893","name":"Get upto 10% discount on Metro Brazil","description":"Get upto 10% discount on Metro Brazil\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion_3.jpeg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"AR249C","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://metrobrazil.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1893&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1893&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1364","name":"Get exclusive offers on Metro Brazil","description":"Get exclusive offers on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/531/adv_metrobrazil_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=531&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1364&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1364&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1640","name":"Get upto 10% discount on Metro Brazil","description":"Get upto 10% discount on Metro Brazil\n1. The offer is valid upto 2022-07-30\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-01-18T00:00:00.389Z","validTo":"2023-07-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/531/adv_metrobrazil_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ar857c","termsAndConditions":"1. The offer is valid upto 2022-07-30\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://ar.metrobrazil.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1640&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1640&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["swim-and-beach-wear","occasional-clothing","men-and-women's-clothing","outerwear","casual-wear","sleep-wear","daily-clothing","clothing-store","inner-wear-and-lingerie","active-and-sports-wear","online-and-in-store","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.451568Z"},{"id":"MOtwN6LkRNeIKUPhMhYO8Q","listName":"Because you are interested in fashion & footwear","listType":"TAG_BASED","totalCount":10,"items":[{"item":{"id":"55b64dbc-0e2e-46be-9de3-530621c29668","name":"Ssense","description":"Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg","dominantColorCode":"#090806","externalId":"AC128","image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","url":"https://www.ssense.com/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1383","name":"Get upto 5% cashback on Ssense","description":"Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"HKD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC128&aff_sub3=1383&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","basic-service","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","sleep-wear","others","footwear-store","swim-and-beach-wear","bags-and-wallets","large-product-range","jewellery-store","accessories-store","casual-wear","clothing-store","loafers","inner-wear-and-lingerie","boots","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"47bf1663-a2e5-4156-afaa-d80cd1d4d8fb","name":"Namshi","description":"Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg","dominantColorCode":"#bfe2f6","externalId":"AC90","image":"https://media.go2speed.org/brand/files/dcm/1276/namshi.png","url":"https://en-ae.namshi.com/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1682","name":"Get upto 15% discount on Namshi","description":"Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-14T00:00:00.389Z","validTo":"2023-02-14T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ac143","termsAndConditions":"1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"http://www.namshi.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1682&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1349","name":"Get exclusive offers on Namshi","description":"Get exclusive offers on Namshi\n1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-11T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=938&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1349&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1886","name":"Get exclusive offers on Namshi","description":"Get exclusive offers on Namshi\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1276/namshi.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1276&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1886&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"20916","name":"Get upto 20% discount on Namshi","description":"Get upto 20% discount on Namshi\n1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-02-13T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/namshi_product.png","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"OM123","termsAndConditions":"1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://en-ae.namshi.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AC90&subid2=20916&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["jackets-and-blazers","outerwear","daily-clothing","fashion-jewellery","party-wear","footwear-store","swim-and-beach-wear","accessories-store","coats","clothing-store","inner-wear-and-lingerie","sneakers","basic-service","regular-retail-store","t-shirts","formal-wear","watch-store","modern","sandals","men-women-children-shoes","sunglasses","online-and-in-store","sweaters","formal-shoes","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","western-clothing","boots","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"cb1bdc8b-4b53-43b8-b4c2-00638dc1d7df","name":"Rivoli Shop","description":"Rivoli encompasses a wide spectrum of all things premium such as watches, eyewear, jewelry, leather accessories and writing instruments.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC116_1_Rivoli_Shop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC116","image":"https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg","url":"https://rivolishop.com/","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"1378","name":"Get upto 4% cashback on Rivoli Shop","description":"Get upto 4% cashback on Rivoli Shop\n1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-05-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=665&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["large-product-range","luxury-watches","designer-labels","watch-store","boutique-store","accessories-store","modern","fashion-watches","fitness-watches","smart-watches","online-and-in-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"0eb0da82-d526-4b58-8a69-713451de1114","name":"American Eagle","description":"American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg","dominantColorCode":"#e6e6e6","externalId":"AC11","image":"https://media.go2speed.org/brand/files/dcm/1349/download (3).png","url":"https://www.americaneagle.com.sa/en/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1367","name":"Get upto 14% cashback on American Eagle","description":"Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"13594","name":"Get exclusive offers on American Eagle","description":"Get exclusive offers on American Eagle\n1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-04-02T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1349/download (3).png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1349&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","regular-retail-store","winter-wear","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","modern","daily-clothing","sunglasses","online-and-in-store","sweaters","footwear-store","large-product-range","flipflops","dresses","occasional-clothing","accessories-store","coats","casual-wear","casual-shoes","clothing-store","shirts","western-clothing","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"ebf22cb5-7dbf-44db-a2a7-1b9f3c082879","name":"Ontime","description":"Shop Trendy Stylish Designer Watches, Jewelry, Handbags online at Ontime.com for Men, Women and Kids at great price","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC44_1_Ontime_New_Image.jpg","dominantColorCode":"#0c0c0c","externalId":"DC44","image":"https://media.go2speed.org/brand/files/arabclicks/807/adv_ontime_icon.jpg","url":"https://www.ontime.com","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"1502","name":"Get upto 15USD discount on Ontime","description":"Get upto 15USD discount on Ontime\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/ontime%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"AB121","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://www.ontime.com/ae/en/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC44&aff_sub3=1502&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC44&aff_sub3=1502&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["necklaces","wallets","jackets-and-blazers","casual-bags","fashion-jewellery","daily-clothing","thermal-wear","footwear-store","online","flipflops","international","jewellery-store","accessories-store","smart-watches","clothing-store","satchels-and-shoulder-bags","sneakers","t-shirts","regular-retail-store","basic-service","winter-wear","watch-store","bracelets","sandals","men-women-children-shoes","backpacks","rings","sweaters","clutches","large-product-range","bags-and-wallets","luxury-watches","casual-wear","casual-shoes","loafers","shirts","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dd4d78da-8498-4db8-be1e-a453819ecb67","name":"Mikyajy","description":"Welcome to the colorful world of Mikyajy! Since its inception 20 years ago as a pioneer in Khaleeji color cosmetics and fragrance, Mikyajy has grown into a closely-knit family of 1.5 million loyal fans across Saudi Arabia, the UAE, Oman, Bahrain, Kuwait and Qatar!","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC610_1_Mikyajy_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC610","image":"https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg","url":"https://mikyajy.com/ksa_en/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"1411","name":"Get exclusive offers on Mikyajy","description":"Get exclusive offers on Mikyajy\n1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-07-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.arabclicks.com/aff_c?offer_id=963&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC610&aff_sub3=1411&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC610&aff_sub3=1411&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","perfumery","health-and-beauty","multi-brand","online-and-in-store","travel-utilities","international","gifts-and-souvenirs","shopping-mall","cosmetics-and-skincare","travel-accessories","personal-care","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"1d160c08-8e49-4330-afde-18b40a35e149","name":"Level Shoes","description":"Level Shoes is a globally recognised retail concept and destination dedicated to the world of designer footwear and accessories","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC77_1_Level_Shoes_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC77","image":"https://media.go2speed.org/brand/files/arabclicks/86/adv_levelshoes_icon.jpg","url":"https://www.levelshoes.com","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1355","name":"Get upto 10% cashback on Level Shoes","description":"Get upto 10% cashback on Level Shoes\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/86/adv_levelshoes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=86&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC77&aff_sub3=1355&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC77&aff_sub3=1355&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["flats","wallets","formal-bags","modern","casual-bags","sandals","men-women-children-shoes","sling-bags","designer-label","online-and-in-store","footwear-store","large-product-range","bags-and-wallets","price-unknown","flipflops","factory-outlet","international","heels","formal-shoes","jewellery-store","accessories-store","casual-shoes","satchels-and-shoulder-bags","loafers","sneakers","boots","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"0e105a12-1c52-4be7-ba47-3764397bfcf5","name":"The Luxury Closet","description":"Shop New & Pre-Loved Authentic Designer Bags. $50 off first order. Free Shipping Worldwide.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC53_1_The_Luxury_Closet_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC53","image":"https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg","url":"https://theluxurycloset.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"821","name":"Get upto 3% cashback on The Luxury Closet","description":"Get upto 3% cashback on The Luxury Closet\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=318&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["necklaces","scarfs-and-shawls","wallets","jackets-and-blazers","casual-bags","fashion-jewellery","daily-clothing","thermal-wear","footwear-store","online","jewellery-store","jeans","gold","accessories-store","coats","clothing-store","satchels-and-shoulder-bags","sneakers","basic-service","regular-retail-store","t-shirts","winter-wear","flats","men-and-women's-shoes","bracelets","fine-jewellery","men-and-women's-clothing","backpacks","sunglasses","rings","totes","sweaters","clutches","large-product-range","suits","bags-and-wallets","pants","belts","casual-wear","casual-shoes","loafers","shirts","boots"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"3ebc8f6a-9fda-45d9-b52f-5e853be3fd39","name":"Boutiquefeel","description":"Shop Sexy Trending Dresses – Boutiquefeel offers the best women's fashion Dresses deals.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD13_1_Boutiquefeel_New_Image.jpg","dominantColorCode":"#eeeef1","externalId":"AD13","image":"http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png","url":"http://www.boutiquefeel.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"20483","name":"Get upto 10% cashback on Boutiquefeel","description":"Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-12-28T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://ad.admitad.com/g/xeoj03ka0qd19318053638a0bfaa27/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD13&subid2=20483&subid3=crayon","claimed":false,"redeemed":false}},{"id":"20484","name":"Get upto 10% cashback on Boutiquefeel","description":"Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-12-28T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://ad.admitad.com/g/zlbj6z1ycmd19318053638a0bfaa27/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD13&subid2=20484&subid3=crayon","claimed":false,"redeemed":false}},{"id":"20482","name":"Get upto 10% cashback on Boutiquefeel","description":"Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-12-28T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://ad.admitad.com/g/r8f19zzoavd19318053638a0bfaa27/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD13&subid2=20482&subid3=crayon","claimed":false,"redeemed":false}},{"id":"20485","name":"Get upto 10% cashback on Boutiquefeel","description":"Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-12-03T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://ad.admitad.com/g/vf3z4kmm3od19318053638a0bfaa27/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD13&subid2=20485&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["jackets-and-blazers","daily-clothing","party-wear","footwear-store","swim-and-beach-wear","online","international","women's-shoes","women's-clothing","heels","dresses","jeans","clothing-store","inner-wear-and-lingerie","regular-retail-store","basic-service","winter-wear","flats","sandals","sweaters","large-product-range","suits","pants","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","shirts","boots"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7431b5de-0043-49ef-b586-e7e09a388ef2","name":"Metro Brazil","description":"ENJOY A WIDE RANGE OF HIGH-END BRAZILIAN CORSETS, SPORTSWEAR, ACCESSORIES AND LUXURIOUS LINGERIE","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC83_1_Metro_Brazil_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC83","image":"https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg","url":"https://ar.metrobrazil.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1365","name":"Get upto 14% cashback on Metro Brazil","description":"Get upto 14% cashback on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=773&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1365&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1365&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1893","name":"Get upto 10% discount on Metro Brazil","description":"Get upto 10% discount on Metro Brazil\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion_3.jpeg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"AR249C","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://metrobrazil.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1893&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1893&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1364","name":"Get exclusive offers on Metro Brazil","description":"Get exclusive offers on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/531/adv_metrobrazil_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=531&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1364&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1364&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1640","name":"Get upto 10% discount on Metro Brazil","description":"Get upto 10% discount on Metro Brazil\n1. The offer is valid upto 2022-07-30\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-01-18T00:00:00.389Z","validTo":"2023-07-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/531/adv_metrobrazil_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ar857c","termsAndConditions":"1. The offer is valid upto 2022-07-30\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://ar.metrobrazil.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1640&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1640&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["swim-and-beach-wear","occasional-clothing","men-and-women's-clothing","outerwear","casual-wear","sleep-wear","daily-clothing","clothing-store","inner-wear-and-lingerie","active-and-sports-wear","online-and-in-store","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:04.45214Z"}]}
142
Then status 200
0
143
Then print response
11
20:57:05.077 [print] {
"id": "sTZ_ZJjuTkKBn4ZsDtRnGQ",
"choices": [
{
"id": "Yow8KlhGQ6OGReJdZdNfjw",
"listName": "Recently viewed",
"listType": "RESUME",
"totalCount": 3,
"items": [
{
"item": {
"id": "55b64dbc-0e2e-46be-9de3-530621c29668",
"name": "Ssense",
"description": "Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.",
"category": "apparel and accessories",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"dominantColorCode": "#090806",
"distance": 0.0,
"externalId": "AC128",
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg",
"tasteMatchScore": 78,
"url": "https://www.ssense.com/"
},
"offers": [
{
"id": "1383",
"name": "Get upto 5% cashback on Ssense",
"description": "Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"redeemed": false,
"claimed": false,
"currency": "HKD",
"cashbackValue": 5.0,
"offerStatus": "active",
"url": "https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC128&aff_sub3=1383&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
}
}
],
"tags": [
"regular-retail-store",
"basic-service",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"sleep-wear",
"others",
"footwear-store",
"swim-and-beach-wear",
"bags-and-wallets",
"large-product-range",
"jewellery-store",
"accessories-store",
"casual-wear",
"clothing-store",
"loafers",
"inner-wear-and-lingerie",
"boots",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "47bf1663-a2e5-4156-afaa-d80cd1d4d8fb",
"name": "Namshi",
"description": "Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.",
"category": "apparel and accessories",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1276/namshi.png",
"dominantColorCode": "#bfe2f6",
"distance": 0.0,
"externalId": "AC90",
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg",
"tasteMatchScore": 78,
"url": "https://en-ae.namshi.com/"
},
"offers": [
{
"id": "1682",
"name": "Get upto 15% discount on Namshi",
"description": "Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-14T00:00:00.389Z",
"validTo": "2023-02-14T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "ac143",
"image": "https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "http://www.namshi.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1682&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"offerType": "offline coupon",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": ""
}
},
{
"id": "1349",
"name": "Get exclusive offers on Namshi",
"description": "Get exclusive offers on Namshi\n1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-11T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"redeemed": false,
"claimed": false,
"currency": "",
"cashbackValue": 5.0,
"offerStatus": "active",
"url": "https://go.arabclicks.com/aff_c?offer_id=938&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1349&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
}
},
{
"id": "1886",
"name": "Get exclusive offers on Namshi",
"description": "Get exclusive offers on Namshi\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1276/namshi.png",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"redeemed": false,
"claimed": false,
"currency": "",
"cashbackValue": 3.2,
"offerStatus": "active",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1276&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1886&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
}
},
{
"id": "20916",
"name": "Get upto 20% discount on Namshi",
"description": "Get upto 20% discount on Namshi\n1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-02-13T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "OM123",
"image": "https://dpimages.crayondata.com/high-res-image/adib/namshi_product.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://en-ae.namshi.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AC90&subid2=20916&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"offerType": "offline coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "USD"
}
}
],
"tags": [
"jackets-and-blazers",
"outerwear",
"daily-clothing",
"fashion-jewellery",
"party-wear",
"footwear-store",
"swim-and-beach-wear",
"accessories-store",
"coats",
"clothing-store",
"inner-wear-and-lingerie",
"sneakers",
"basic-service",
"regular-retail-store",
"t-shirts",
"formal-wear",
"watch-store",
"modern",
"sandals",
"men-women-children-shoes",
"sunglasses",
"online-and-in-store",
"sweaters",
"formal-shoes",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"western-clothing",
"boots",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "634ea784-f4a6-4d02-8cda-0374e53823d6",
"name": "Newchic",
"description": "Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.",
"category": "apparel and accessories",
"active": true,
"properties": {
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"dominantColorCode": "#f0f0f0",
"distance": 0.0,
"externalId": "AD58",
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg",
"tasteMatchScore": 72,
"url": "http://www.newchic.com/"
},
"offers": [
{
"id": "19886",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "AMTDM20",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 12.0,
"offerStatus": "active",
"url": "https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=19886&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"offerType": "online coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "USD"
}
},
{
"id": "1633",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "NCAFF20",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 12.0,
"offerStatus": "active",
"url": "https://ad.admitad.com/g/7f3cxjm4yjd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1633&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"offerType": "online coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "USD"
}
},
{
"id": "1712",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "NCAFF15",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 12.0,
"offerStatus": "active",
"url": "https://ad.admitad.com/g/c50whdpob9d1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1712&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"offerType": "online coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "USD"
}
},
{
"id": "1597",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "NCAFF25",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"payoutType": "cpa_percentage",
"redeemed": false,
"claimed": false,
"cashbackValue": 12.0,
"offerStatus": "active",
"url": "https://ad.admitad.com/g/luljs3wmayd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1597&subid3=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"offerType": "online coupon",
"offerSource": "Admitad",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "USD"
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"online",
"home-furnishings",
"apparel-and-accessories",
"international",
"pet-supplies",
"accessories-store",
"pet-and-pet-supplies",
"footwear-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.450999Z"
},
{
"id": "-kv0YXTlTcSSkLaLhYklFA",
"listName": "Best-selling offers",
"listType": "POPULARITY",
"totalCount": 10,
"items": [
{
"item": {
"id": "cb1bdc8b-4b53-43b8-b4c2-00638dc1d7df",
"name": "Rivoli Shop",
"description": "Rivoli encompasses a wide spectrum of all things premium such as watches, eyewear, jewelry, leather accessories and writing instruments.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC116_1_Rivoli_Shop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC116",
"image": "https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg",
"url": "https://rivolishop.com/",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1378",
"name": "Get upto 4% cashback on Rivoli Shop",
"description": "Get upto 4% cashback on Rivoli Shop\n1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-05-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=665&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"large-product-range",
"luxury-watches",
"designer-labels",
"watch-store",
"boutique-store",
"accessories-store",
"modern",
"fashion-watches",
"fitness-watches",
"smart-watches",
"online-and-in-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "0eb0da82-d526-4b58-8a69-713451de1114",
"name": "American Eagle",
"description": "American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg",
"dominantColorCode": "#e6e6e6",
"externalId": "AC11",
"image": "https://media.go2speed.org/brand/files/dcm/1349/download (3).png",
"url": "https://www.americaneagle.com.sa/en/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1367",
"name": "Get upto 14% cashback on American Eagle",
"description": "Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "13594",
"name": "Get exclusive offers on American Eagle",
"description": "Get exclusive offers on American Eagle\n1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-04-02T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1349/download (3).png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1349&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"regular-retail-store",
"winter-wear",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"modern",
"daily-clothing",
"sunglasses",
"online-and-in-store",
"sweaters",
"footwear-store",
"large-product-range",
"flipflops",
"dresses",
"occasional-clothing",
"accessories-store",
"coats",
"casual-wear",
"casual-shoes",
"clothing-store",
"shirts",
"western-clothing",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "35d9cbfc-d31e-43c9-b199-8ff198ca1c04",
"name": "Nayomi",
"description": "Nayomi brings you a multitude of women's lingerie for all tastes and all forms, that way you will be sure not to go wrong with a lace bra while opting for the best support.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC91_1_Nayomi_New_Image.jpg",
"dominantColorCode": "#0e0604",
"externalId": "AC91",
"image": "https://media.go2speed.org/brand/files/arabclicks/833/adv_nayomi_icon.jpg",
"url": "https://www.nayomi.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1380",
"name": "Get exclusive offers on Nayomi",
"description": "Get exclusive offers on Nayomi\n1. The offer is valid upto 2024-07-02\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-07-02T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/833/adv_nayomi_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2024-07-02\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=833&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC91&aff_sub3=1380&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"swim-and-beach-wear",
"international",
"women's-clothing",
"outerwear",
"casual-wear",
"sleep-wear",
"daily-clothing",
"clothing-store",
"inner-wear-and-lingerie",
"online-and-in-store",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9c70a451-cd1e-4d40-973f-3864ac475e1f",
"name": "H&M",
"description": "The H&M group is one of the world?��s leading fashion companies ?�� with the brands H&M and H&M Home, COS, & Other Stories, Monki, Weekday Cheap Monday and ARKET.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC59_1_H&M_New_Image.jpg",
"dominantColorCode": "#ededed",
"externalId": "AC59",
"image": "https://media.go2speed.org/brand/files/dcm/158/800px-H&M-Logo.svg.png",
"url": "https://ae.hm.com/en/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1345",
"name": "Get upto 10% cashback on H&M",
"description": "Get upto 10% cashback on H&M\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/405/adv_hm_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=405&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC59&aff_sub3=1345&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "872",
"name": "Get exclusive offers on H&M",
"description": "Get exclusive offers on H&M\n1. The offer is valid upto 2039-12-21\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-12-21T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.7,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/158/800px-H&M-Logo.svg.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2039-12-21\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=158&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC59&aff_sub3=872&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "13363",
"name": "Get exclusive offers on H&M",
"description": "Get exclusive offers on H&M\n1. The offer is valid upto 2023-10-16\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-10-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/449/adv_hm_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-10-16\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=449&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC59&aff_sub3=13363&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"other-styles",
"jackets-and-blazers",
"outerwear",
"sleep-wear",
"daily-clothing",
"fashion-jewellery",
"loungewear",
"footwear-store",
"swim-and-beach-wear",
"dresses",
"cardigans",
"jeans",
"accessories-store",
"jewellery-store",
"maternity-wear",
"coats",
"plus-size",
"clothing-store",
"inner-wear-and-lingerie",
"regular-retail-store",
"basic-service",
"winter-wear",
"modern",
"sandals",
"men-women-children-shoes",
"online-and-in-store",
"others",
"large-product-range",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "634ea784-f4a6-4d02-8cda-0374e53823d6",
"name": "Newchic",
"description": "Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg",
"dominantColorCode": "#f0f0f0",
"externalId": "AD58",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"url": "http://www.newchic.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "19886",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AMTDM20",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=19886&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1633",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "NCAFF20",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/7f3cxjm4yjd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1633&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1712",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "NCAFF15",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/c50whdpob9d1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1712&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1597",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-05-26T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "NCAFF25",
"termsAndConditions": "1. The offer is valid upto 2022-04-30\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/luljs3wmayd1931805363442850f04/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD58&subid2=1597&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"online",
"home-furnishings",
"apparel-and-accessories",
"international",
"pet-supplies",
"accessories-store",
"pet-and-pet-supplies",
"footwear-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "ebf22cb5-7dbf-44db-a2a7-1b9f3c082879",
"name": "Ontime",
"description": "Shop Trendy Stylish Designer Watches, Jewelry, Handbags online at Ontime.com for Men, Women and Kids at great price",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC44_1_Ontime_New_Image.jpg",
"dominantColorCode": "#0c0c0c",
"externalId": "DC44",
"image": "https://media.go2speed.org/brand/files/arabclicks/807/adv_ontime_icon.jpg",
"url": "https://www.ontime.com",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1502",
"name": "Get upto 15USD discount on Ontime",
"description": "Get upto 15USD discount on Ontime\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/ontime%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "AB121",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://www.ontime.com/ae/en/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC44&aff_sub3=1502&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC44&aff_sub3=1502&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"necklaces",
"wallets",
"jackets-and-blazers",
"casual-bags",
"fashion-jewellery",
"daily-clothing",
"thermal-wear",
"footwear-store",
"online",
"flipflops",
"international",
"jewellery-store",
"accessories-store",
"smart-watches",
"clothing-store",
"satchels-and-shoulder-bags",
"sneakers",
"t-shirts",
"regular-retail-store",
"basic-service",
"winter-wear",
"watch-store",
"bracelets",
"sandals",
"men-women-children-shoes",
"backpacks",
"rings",
"sweaters",
"clutches",
"large-product-range",
"bags-and-wallets",
"luxury-watches",
"casual-wear",
"casual-shoes",
"loafers",
"shirts",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dd4d78da-8498-4db8-be1e-a453819ecb67",
"name": "Mikyajy",
"description": "Welcome to the colorful world of Mikyajy! Since its inception 20 years ago as a pioneer in Khaleeji color cosmetics and fragrance, Mikyajy has grown into a closely-knit family of 1.5 million loyal fans across Saudi Arabia, the UAE, Oman, Bahrain, Kuwait and Qatar!",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC610_1_Mikyajy_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC610",
"image": "https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg",
"url": "https://mikyajy.com/ksa_en/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1411",
"name": "Get exclusive offers on Mikyajy",
"description": "Get exclusive offers on Mikyajy\n1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-07-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.arabclicks.com/aff_c?offer_id=963&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC610&aff_sub3=1411&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC610&aff_sub3=1411&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"perfumery",
"health-and-beauty",
"multi-brand",
"online-and-in-store",
"travel-utilities",
"international",
"gifts-and-souvenirs",
"shopping-mall",
"cosmetics-and-skincare",
"travel-accessories",
"personal-care",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "1d160c08-8e49-4330-afde-18b40a35e149",
"name": "Level Shoes",
"description": "Level Shoes is a globally recognised retail concept and destination dedicated to the world of designer footwear and accessories",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC77_1_Level_Shoes_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC77",
"image": "https://media.go2speed.org/brand/files/arabclicks/86/adv_levelshoes_icon.jpg",
"url": "https://www.levelshoes.com",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1355",
"name": "Get upto 10% cashback on Level Shoes",
"description": "Get upto 10% cashback on Level Shoes\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/86/adv_levelshoes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=86&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC77&aff_sub3=1355&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC77&aff_sub3=1355&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"flats",
"wallets",
"formal-bags",
"modern",
"casual-bags",
"sandals",
"men-women-children-shoes",
"sling-bags",
"designer-label",
"online-and-in-store",
"footwear-store",
"large-product-range",
"bags-and-wallets",
"price-unknown",
"flipflops",
"factory-outlet",
"international",
"heels",
"formal-shoes",
"jewellery-store",
"accessories-store",
"casual-shoes",
"satchels-and-shoulder-bags",
"loafers",
"sneakers",
"boots",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "0e105a12-1c52-4be7-ba47-3764397bfcf5",
"name": "The Luxury Closet",
"description": "Shop New & Pre-Loved Authentic Designer Bags. $50 off first order. Free Shipping Worldwide.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC53_1_The_Luxury_Closet_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC53",
"image": "https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg",
"url": "https://theluxurycloset.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "821",
"name": "Get upto 3% cashback on The Luxury Closet",
"description": "Get upto 3% cashback on The Luxury Closet\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=318&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"necklaces",
"scarfs-and-shawls",
"wallets",
"jackets-and-blazers",
"casual-bags",
"fashion-jewellery",
"daily-clothing",
"thermal-wear",
"footwear-store",
"online",
"jewellery-store",
"jeans",
"gold",
"accessories-store",
"coats",
"clothing-store",
"satchels-and-shoulder-bags",
"sneakers",
"basic-service",
"regular-retail-store",
"t-shirts",
"winter-wear",
"flats",
"men-and-women's-shoes",
"bracelets",
"fine-jewellery",
"men-and-women's-clothing",
"backpacks",
"sunglasses",
"rings",
"totes",
"sweaters",
"clutches",
"large-product-range",
"suits",
"bags-and-wallets",
"pants",
"belts",
"casual-wear",
"casual-shoes",
"loafers",
"shirts",
"boots"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7431b5de-0043-49ef-b586-e7e09a388ef2",
"name": "Metro Brazil",
"description": "ENJOY A WIDE RANGE OF HIGH-END BRAZILIAN CORSETS, SPORTSWEAR, ACCESSORIES AND LUXURIOUS LINGERIE",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC83_1_Metro_Brazil_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC83",
"image": "https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg",
"url": "https://ar.metrobrazil.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1365",
"name": "Get upto 14% cashback on Metro Brazil",
"description": "Get upto 14% cashback on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=773&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1365&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1365&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1893",
"name": "Get upto 10% discount on Metro Brazil",
"description": "Get upto 10% discount on Metro Brazil\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion_3.jpeg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AR249C",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://metrobrazil.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1893&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1893&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1364",
"name": "Get exclusive offers on Metro Brazil",
"description": "Get exclusive offers on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/531/adv_metrobrazil_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=531&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1364&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1364&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1640",
"name": "Get upto 10% discount on Metro Brazil",
"description": "Get upto 10% discount on Metro Brazil\n1. The offer is valid upto 2022-07-30\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-01-18T00:00:00.389Z",
"validTo": "2023-07-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/531/adv_metrobrazil_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ar857c",
"termsAndConditions": "1. The offer is valid upto 2022-07-30\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ar.metrobrazil.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1640&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1640&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"swim-and-beach-wear",
"occasional-clothing",
"men-and-women's-clothing",
"outerwear",
"casual-wear",
"sleep-wear",
"daily-clothing",
"clothing-store",
"inner-wear-and-lingerie",
"active-and-sports-wear",
"online-and-in-store",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.451568Z"
},
{
"id": "MOtwN6LkRNeIKUPhMhYO8Q",
"listName": "Because you are interested in fashion & footwear",
"listType": "TAG_BASED",
"totalCount": 10,
"items": [
{
"item": {
"id": "55b64dbc-0e2e-46be-9de3-530621c29668",
"name": "Ssense",
"description": "Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg",
"dominantColorCode": "#090806",
"externalId": "AC128",
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"url": "https://www.ssense.com/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1383",
"name": "Get upto 5% cashback on Ssense",
"description": "Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "HKD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC128&aff_sub3=1383&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"basic-service",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"sleep-wear",
"others",
"footwear-store",
"swim-and-beach-wear",
"bags-and-wallets",
"large-product-range",
"jewellery-store",
"accessories-store",
"casual-wear",
"clothing-store",
"loafers",
"inner-wear-and-lingerie",
"boots",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "47bf1663-a2e5-4156-afaa-d80cd1d4d8fb",
"name": "Namshi",
"description": "Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg",
"dominantColorCode": "#bfe2f6",
"externalId": "AC90",
"image": "https://media.go2speed.org/brand/files/dcm/1276/namshi.png",
"url": "https://en-ae.namshi.com/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1682",
"name": "Get upto 15% discount on Namshi",
"description": "Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-14T00:00:00.389Z",
"validTo": "2023-02-14T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ac143",
"termsAndConditions": "1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "http://www.namshi.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1682&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1349",
"name": "Get exclusive offers on Namshi",
"description": "Get exclusive offers on Namshi\n1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-11T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-11\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=938&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1349&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1886",
"name": "Get exclusive offers on Namshi",
"description": "Get exclusive offers on Namshi\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1276/namshi.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1276&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC90&aff_sub3=1886&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "20916",
"name": "Get upto 20% discount on Namshi",
"description": "Get upto 20% discount on Namshi\n1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-02-13T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/namshi_product.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "OM123",
"termsAndConditions": "1. The offer is valid upto 2022-02-13\n2. The offer is valid for Women's Apparel, Accessories, Beauty, Women's Sportswear, Gifts, Home Furnishing only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://en-ae.namshi.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AC90&subid2=20916&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"jackets-and-blazers",
"outerwear",
"daily-clothing",
"fashion-jewellery",
"party-wear",
"footwear-store",
"swim-and-beach-wear",
"accessories-store",
"coats",
"clothing-store",
"inner-wear-and-lingerie",
"sneakers",
"basic-service",
"regular-retail-store",
"t-shirts",
"formal-wear",
"watch-store",
"modern",
"sandals",
"men-women-children-shoes",
"sunglasses",
"online-and-in-store",
"sweaters",
"formal-shoes",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"western-clothing",
"boots",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "cb1bdc8b-4b53-43b8-b4c2-00638dc1d7df",
"name": "Rivoli Shop",
"description": "Rivoli encompasses a wide spectrum of all things premium such as watches, eyewear, jewelry, leather accessories and writing instruments.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC116_1_Rivoli_Shop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC116",
"image": "https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg",
"url": "https://rivolishop.com/",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1378",
"name": "Get upto 4% cashback on Rivoli Shop",
"description": "Get upto 4% cashback on Rivoli Shop\n1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-05-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/665/adv_rivolishop_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-05-03\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=665&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC116&aff_sub3=1378&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"large-product-range",
"luxury-watches",
"designer-labels",
"watch-store",
"boutique-store",
"accessories-store",
"modern",
"fashion-watches",
"fitness-watches",
"smart-watches",
"online-and-in-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "0eb0da82-d526-4b58-8a69-713451de1114",
"name": "American Eagle",
"description": "American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg",
"dominantColorCode": "#e6e6e6",
"externalId": "AC11",
"image": "https://media.go2speed.org/brand/files/dcm/1349/download (3).png",
"url": "https://www.americaneagle.com.sa/en/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1367",
"name": "Get upto 14% cashback on American Eagle",
"description": "Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=1367&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "13594",
"name": "Get exclusive offers on American Eagle",
"description": "Get exclusive offers on American Eagle\n1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-04-02T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1349/download (3).png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2039-04-02\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1349&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC11&aff_sub3=13594&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"regular-retail-store",
"winter-wear",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"modern",
"daily-clothing",
"sunglasses",
"online-and-in-store",
"sweaters",
"footwear-store",
"large-product-range",
"flipflops",
"dresses",
"occasional-clothing",
"accessories-store",
"coats",
"casual-wear",
"casual-shoes",
"clothing-store",
"shirts",
"western-clothing",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "ebf22cb5-7dbf-44db-a2a7-1b9f3c082879",
"name": "Ontime",
"description": "Shop Trendy Stylish Designer Watches, Jewelry, Handbags online at Ontime.com for Men, Women and Kids at great price",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC44_1_Ontime_New_Image.jpg",
"dominantColorCode": "#0c0c0c",
"externalId": "DC44",
"image": "https://media.go2speed.org/brand/files/arabclicks/807/adv_ontime_icon.jpg",
"url": "https://www.ontime.com",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1502",
"name": "Get upto 15USD discount on Ontime",
"description": "Get upto 15USD discount on Ontime\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/ontime%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "AB121",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://www.ontime.com/ae/en/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC44&aff_sub3=1502&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC44&aff_sub3=1502&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"necklaces",
"wallets",
"jackets-and-blazers",
"casual-bags",
"fashion-jewellery",
"daily-clothing",
"thermal-wear",
"footwear-store",
"online",
"flipflops",
"international",
"jewellery-store",
"accessories-store",
"smart-watches",
"clothing-store",
"satchels-and-shoulder-bags",
"sneakers",
"t-shirts",
"regular-retail-store",
"basic-service",
"winter-wear",
"watch-store",
"bracelets",
"sandals",
"men-women-children-shoes",
"backpacks",
"rings",
"sweaters",
"clutches",
"large-product-range",
"bags-and-wallets",
"luxury-watches",
"casual-wear",
"casual-shoes",
"loafers",
"shirts",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dd4d78da-8498-4db8-be1e-a453819ecb67",
"name": "Mikyajy",
"description": "Welcome to the colorful world of Mikyajy! Since its inception 20 years ago as a pioneer in Khaleeji color cosmetics and fragrance, Mikyajy has grown into a closely-knit family of 1.5 million loyal fans across Saudi Arabia, the UAE, Oman, Bahrain, Kuwait and Qatar!",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC610_1_Mikyajy_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC610",
"image": "https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg",
"url": "https://mikyajy.com/ksa_en/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1411",
"name": "Get exclusive offers on Mikyajy",
"description": "Get exclusive offers on Mikyajy\n1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-07-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.arabclicks.com/aff_c?offer_id=963&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC610&aff_sub3=1411&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC610&aff_sub3=1411&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"perfumery",
"health-and-beauty",
"multi-brand",
"online-and-in-store",
"travel-utilities",
"international",
"gifts-and-souvenirs",
"shopping-mall",
"cosmetics-and-skincare",
"travel-accessories",
"personal-care",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "1d160c08-8e49-4330-afde-18b40a35e149",
"name": "Level Shoes",
"description": "Level Shoes is a globally recognised retail concept and destination dedicated to the world of designer footwear and accessories",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC77_1_Level_Shoes_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC77",
"image": "https://media.go2speed.org/brand/files/arabclicks/86/adv_levelshoes_icon.jpg",
"url": "https://www.levelshoes.com",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1355",
"name": "Get upto 10% cashback on Level Shoes",
"description": "Get upto 10% cashback on Level Shoes\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/86/adv_levelshoes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=86&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC77&aff_sub3=1355&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC77&aff_sub3=1355&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"flats",
"wallets",
"formal-bags",
"modern",
"casual-bags",
"sandals",
"men-women-children-shoes",
"sling-bags",
"designer-label",
"online-and-in-store",
"footwear-store",
"large-product-range",
"bags-and-wallets",
"price-unknown",
"flipflops",
"factory-outlet",
"international",
"heels",
"formal-shoes",
"jewellery-store",
"accessories-store",
"casual-shoes",
"satchels-and-shoulder-bags",
"loafers",
"sneakers",
"boots",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "0e105a12-1c52-4be7-ba47-3764397bfcf5",
"name": "The Luxury Closet",
"description": "Shop New & Pre-Loved Authentic Designer Bags. $50 off first order. Free Shipping Worldwide.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC53_1_The_Luxury_Closet_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC53",
"image": "https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg",
"url": "https://theluxurycloset.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "821",
"name": "Get upto 3% cashback on The Luxury Closet",
"description": "Get upto 3% cashback on The Luxury Closet\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=318&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC53&aff_sub3=821&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"necklaces",
"scarfs-and-shawls",
"wallets",
"jackets-and-blazers",
"casual-bags",
"fashion-jewellery",
"daily-clothing",
"thermal-wear",
"footwear-store",
"online",
"jewellery-store",
"jeans",
"gold",
"accessories-store",
"coats",
"clothing-store",
"satchels-and-shoulder-bags",
"sneakers",
"basic-service",
"regular-retail-store",
"t-shirts",
"winter-wear",
"flats",
"men-and-women's-shoes",
"bracelets",
"fine-jewellery",
"men-and-women's-clothing",
"backpacks",
"sunglasses",
"rings",
"totes",
"sweaters",
"clutches",
"large-product-range",
"suits",
"bags-and-wallets",
"pants",
"belts",
"casual-wear",
"casual-shoes",
"loafers",
"shirts",
"boots"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "3ebc8f6a-9fda-45d9-b52f-5e853be3fd39",
"name": "Boutiquefeel",
"description": "Shop Sexy Trending Dresses \u2013 Boutiquefeel offers the best women's fashion Dresses deals.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD13_1_Boutiquefeel_New_Image.jpg",
"dominantColorCode": "#eeeef1",
"externalId": "AD13",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png",
"url": "http://www.boutiquefeel.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "20483",
"name": "Get upto 10% cashback on Boutiquefeel",
"description": "Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-12-28T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ad.admitad.com/g/xeoj03ka0qd19318053638a0bfaa27/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD13&subid2=20483&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "20484",
"name": "Get upto 10% cashback on Boutiquefeel",
"description": "Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-12-28T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ad.admitad.com/g/zlbj6z1ycmd19318053638a0bfaa27/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD13&subid2=20484&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "20482",
"name": "Get upto 10% cashback on Boutiquefeel",
"description": "Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-12-28T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ad.admitad.com/g/r8f19zzoavd19318053638a0bfaa27/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD13&subid2=20482&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "20485",
"name": "Get upto 10% cashback on Boutiquefeel",
"description": "Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-12-03T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ad.admitad.com/g/vf3z4kmm3od19318053638a0bfaa27/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD13&subid2=20485&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"jackets-and-blazers",
"daily-clothing",
"party-wear",
"footwear-store",
"swim-and-beach-wear",
"online",
"international",
"women's-shoes",
"women's-clothing",
"heels",
"dresses",
"jeans",
"clothing-store",
"inner-wear-and-lingerie",
"regular-retail-store",
"basic-service",
"winter-wear",
"flats",
"sandals",
"sweaters",
"large-product-range",
"suits",
"pants",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"shirts",
"boots"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7431b5de-0043-49ef-b586-e7e09a388ef2",
"name": "Metro Brazil",
"description": "ENJOY A WIDE RANGE OF HIGH-END BRAZILIAN CORSETS, SPORTSWEAR, ACCESSORIES AND LUXURIOUS LINGERIE",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC83_1_Metro_Brazil_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC83",
"image": "https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg",
"url": "https://ar.metrobrazil.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1365",
"name": "Get upto 14% cashback on Metro Brazil",
"description": "Get upto 14% cashback on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=773&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1365&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1365&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1893",
"name": "Get upto 10% discount on Metro Brazil",
"description": "Get upto 10% discount on Metro Brazil\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion_3.jpeg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AR249C",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://metrobrazil.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1893&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1893&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1364",
"name": "Get exclusive offers on Metro Brazil",
"description": "Get exclusive offers on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/531/adv_metrobrazil_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=531&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1364&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1364&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1640",
"name": "Get upto 10% discount on Metro Brazil",
"description": "Get upto 10% discount on Metro Brazil\n1. The offer is valid upto 2022-07-30\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-01-18T00:00:00.389Z",
"validTo": "2023-07-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/531/adv_metrobrazil_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ar857c",
"termsAndConditions": "1. The offer is valid upto 2022-07-30\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ar.metrobrazil.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1640&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC83&aff_sub3=1640&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"swim-and-beach-wear",
"occasional-clothing",
"men-and-women's-clothing",
"outerwear",
"casual-wear",
"sleep-wear",
"daily-clothing",
"clothing-store",
"inner-wear-and-lingerie",
"active-and-sports-wear",
"online-and-in-store",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:04.45214Z"
}
]
}
Scenario: [10.1:161]
To validate the response for category choices list
ms: 1756
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:04.202 karate.env system property was: null
20:57:04.203 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
151
Given headers req_headers
0
152
And url baseUrl
0
153
And path choiceApiUrl
1
154
And request {category:miscellaneous stores, choiceCount:10, lang:en,city:dubai,includeCampaigns:true,servedAt:2022-04-06T23:59:59.000+00:00, }
0
155
When method Post
1736
20:57:04.208 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/choice/list
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 146
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"category":"miscellaneous stores","choiceCount":10,"lang":"en","city":"dubai","includeCampaigns":true,"servedAt":"2022-04-06T23:59:59.000+00:00"}
20:57:05.937 response time in milliseconds: 1723
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:04 GMT
{"id":"gZRAuGckQCaRI8aWrFhbwg","choices":[{"id":"mOWrrg6IT0SW_TdvGo6Tag","listName":"Expiring Soon","listType":"EXPIRING_SOON","totalCount":1,"items":[{"item":{"id":"f1bd8cae-9374-4037-9b8a-eb1740141a04","name":"The Entertainer","description":"The Entertainer provides of two-for-one incentive offers and other discounts across the Middle East, Asia, South Africa & Europe.","category":"miscellaneous stores","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg","dominantColorCode":"#FCFFE0","distance":0.0,"externalId":"DC52","tasteMatchScoreReason":"Because you like business, you might like this too","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC52_1_The_Entertainer_New_Image.jpg","tasteMatchScore":70,"url":"https://www.theentertainerme.com/"},"offers":[{"id":"863","name":"Get exclusive offers on The Entertainer","description":"Get exclusive offers on The Entertainer\n1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2022-04-07T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"AED","cashbackValue":4.0,"offerStatus":"active","url":"https://go.urtrackinglink.com/aff_c?offer_id=1171&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}}],"tags":["online","business","application"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.097153Z"},{"id":"CMrLz1_5QYabia-x0hHc1w","listName":"Best-selling offers","listType":"POPULARITY","totalCount":10,"items":[{"item":{"id":"a31f7738-da4f-4c97-a61c-5e7b0627be96","name":"Udemy","description":"Udemy is an online learning and teaching marketplace with over 150000 courses and 24 million students.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC151_1_Udemy_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC151","image":"https://media.go2speed.org/brand/files/arabclicks/446/adv_udemy_icon.jpg","url":"https://www.udemy.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1405","name":"Get upto 10% cashback on Udemy","description":"Get upto 10% cashback on Udemy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/446/adv_udemy_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=446&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC151&aff_sub3=1405&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC151&aff_sub3=1405&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["online","business","e-commerce"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"e502ee5b-556b-417e-9f37-7f77a3dbb09c","name":"Norton","description":"Norton Secure VPN is a no-log virtual private network (VPN) that helps encrypt your personal information and doesn?��t track or store your online activity or location.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC98_1_Norton_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC98","image":"https://media.go2speed.org/brand/files/arabclicks/721/adv_norton_icon.jpg","url":"https://ae.norton.com/products","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1403","name":"Get upto 26.9AED cashback on Norton","description":"Get upto 26.9AED cashback on Norton\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":26.9,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/721/adv_norton_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=721&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC98&aff_sub3=1403&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC98&aff_sub3=1403&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["security-services","software","business"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"981667f2-1071-4435-bca9-5708bbd850e2","name":"Pyypl App","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2283_1_Pyypl_App_New_Image.jpg","dominantColorCode":"#3afcb6","externalId":"AC2283","image":"https://media.go2speed.org/brand/files/arabclicks/1033/adv_pyypl_icon.jpg","url":"https://yimlo.app.link/h6wItBgzRgb","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"6885","name":"Get exclusive offers on Pyypl App","description":"Get exclusive offers on Pyypl App\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Business & Finance only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/1033/adv_pyypl_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Business & Finance only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=1033&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC2283&aff_sub3=6885&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"acacb27b-5002-4391-84b9-d397b4c2c778","name":"Expandcart","description":"Build a successful online store in minutes without the need for any technical assistance, and enjoy a 15 days free trial. Start Now!","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/adib/Expandcart.png","dominantColorCode":"#ffffff","externalId":"AC40","image":"https://media.go2speed.org/brand/files/arabclicks/145/adv_expandcart_icon.jpg","url":"https://www.expandcart.com/ar/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1396","name":"Get upto 14% cashback on Expandcart","description":"Get upto 14% cashback on Expandcart\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/145/adv_expandcart_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=145&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC40&aff_sub3=1396&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC40&aff_sub3=1396&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["cloud-services","business","hosting-and-domain-name-registration-services"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9e3c296d-67ce-4ad2-af49-36f76d7e9c02","name":"Daily Mealz","description":"Dailymealz Is a healthy food subscription app, delivers fresh, healthy and tasty meals to your office daily, with weekly or monthly subscriptions.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC31_Daily_Mealz_New_Offer.jpeg","dominantColorCode":"#f3eff0","externalId":"AC31","image":"https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg","url":"https://apps.apple.com/SA/app/id1286998039?mt=8","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like dining, you might like this too","distance":0.0},"offers":[{"id":"1627","name":"Get upto 15% discount on Daily Mealz","description":"Get upto 15% discount on Daily Mealz\n1. The offer is valid upto 2023-01-01\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2020-09-03T00:00:00.389Z","validTo":"2024-01-01T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ac86","termsAndConditions":"1. The offer is valid upto 2023-01-01\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://apps.apple.com/SA/app/id1286998039?mt=8&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1627&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1627&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1398","name":"Get exclusive offers on Daily Mealz","description":"Get exclusive offers on Daily Mealz\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":25.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=542&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1398&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1398&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["online","subscription-services","business","food-delivery-services"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"811b22c5-0cb8-43fd-b9c7-1a79d12267a5","name":"Edx","description":"edX is the trusted platform for education and learning. Founded by Harvard and MIT, edX is home to more than 20 million learners, the majority of top-ranked universities in the world and industry-leading companies.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC36_Edx_1.png","dominantColorCode":"#97F19E","externalId":"AC36","image":"https://media.go2speed.org/brand/files/arabclicks/203/adv_edx_icon.jpg","url":"https://www.edx.org","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1377","name":"Get upto 9% cashback on Edx","description":"Get upto 9% cashback on Edx\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/203/adv_edx_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=203&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC36&aff_sub3=1377&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC36&aff_sub3=1377&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["online","business","educational-services"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"fde2e6d1-7c24-4ba8-85a7-f51d98113562","name":"Wondershare","description":"Our software and products are used in over 150 countries world-wide. We’re continually inspired by our users, and we’re committed to creating simple and easy-to-use software for their needs.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD82_1_Wondershare_New_Image.jpg","dominantColorCode":"#080c0b","externalId":"AD82","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","url":"https://www.wondershare.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1713","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SENWSAFF","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/k4jy95u2asd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1713&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1713&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1656","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SENKPAFF","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/dyitz6gy4jd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1656&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1656&subid3=crayon","claimed":false,"redeemed":false}},{"id":"22107","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-08T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MBRAFF01","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/m7udv5sxgrd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=22107&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=22107&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1851","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SENPXAFF","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/d570o6uk0zd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1851&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1851&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1890","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SESAFFED","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/10yvt43faxd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1890&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1890&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1655","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE15","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/vi89ojmqhrd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1655&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1655&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1894","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE15","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/tnqqga5s9vd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1894&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1894&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1665","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE15","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/hktyityzwed193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1665&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1665&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1477","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SENVCAFF","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/4k0o2wiie7d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1477&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1477&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1544","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MESAFF07","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/ubvlj4rk3zd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1544&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1544&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1644","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-04-01\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-04-01T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"LENAFF5","termsAndConditions":"1. The offer is valid upto 2022-04-01\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/lpg6b4t7cod193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1644&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1644&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1868","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MESAFF08","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/o3eflcirk4d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1868&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1868&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1759","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MESAFF10","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/irln98u23id193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1759&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1759&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1429","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MESAFF05","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/538dbfwnzpd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1429&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1429&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1586","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE10","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/dt65ytld0cd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1586&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1586&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1743","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE15","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9e629ubp62d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1743&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1743&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1420","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE20","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/2vrlqzg3lbd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1420&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1420&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["online","software","business"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"197eba8d-51f0-4261-99bd-ae3c54c2ee73","name":"Groupon","description":"Discover & Save with Over 300k of the Best Deals and Things to Do Near You.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC58_1_Groupon_New_Image.jpg","dominantColorCode":"#021a1c","externalId":"AC58","image":"https://media.go2speed.org/brand/files/arabclicks/214/adv_groupon_icon.jpg","url":"https://www.groupon.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1404","name":"Get upto 6% cashback on Groupon","description":"Get upto 6% cashback on Groupon\n1. The offer is valid upto 2023-12-22\n2. The offer is valid for Travel, Services, Entertainment & Restaurants only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-22T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/214/adv_groupon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-22\n2. The offer is valid for Travel, Services, Entertainment & Restaurants only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=214&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC58&aff_sub3=1404&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC58&aff_sub3=1404&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["online","corporate","business"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"2a0ec76e-0ad6-4c76-8bbe-466a5a2f7f62","name":"Salla","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2285_1_Salla_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC2285","image":"https://media.go2speed.org/brand/files/arabclicks/1029/adv_salla_icon.jpg","url":"https://salla.sa/site/start/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"6882","name":"Get upto 10% cashback on Salla","description":"Get upto 10% cashback on Salla\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/1029/adv_salla_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=1029&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC2285&aff_sub3=6882&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7250cc6f-9836-4e35-969b-abede97f2e2b","name":"Microsoft","description":"Designed to help you achieve more with innovative Office apps, intelligent cloud services, and world-class security.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC85_1_Microsoft_New_Image.jpg","dominantColorCode":"#fbfbfb","externalId":"AC85","image":"https://media.go2speed.org/brand/files/arabclicks/815/adv_microsoft_icon.jpg","url":"https://www.microsoft.com/en-ww/microsoft-365/buy/compare-all-microsoft-365-products","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1408","name":"Get upto 3.2AED cashback on Microsoft","description":"Get upto 3.2AED cashback on Microsoft\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/815/adv_microsoft_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=815&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC85&aff_sub3=1408&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC85&aff_sub3=1408&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["software","business"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.097501Z"},{"id":"8FwKwTM-SAyNvj1knxVsQw","listName":"Because you are interested in web services & dining","listType":"TAG_BASED","totalCount":9,"items":[{"item":{"id":"a31f7738-da4f-4c97-a61c-5e7b0627be96","name":"Udemy","description":"Udemy is an online learning and teaching marketplace with over 150000 courses and 24 million students.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC151_1_Udemy_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC151","image":"https://media.go2speed.org/brand/files/arabclicks/446/adv_udemy_icon.jpg","url":"https://www.udemy.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1405","name":"Get upto 10% cashback on Udemy","description":"Get upto 10% cashback on Udemy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/446/adv_udemy_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=446&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC151&aff_sub3=1405&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC151&aff_sub3=1405&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["online","business","e-commerce"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"e502ee5b-556b-417e-9f37-7f77a3dbb09c","name":"Norton","description":"Norton Secure VPN is a no-log virtual private network (VPN) that helps encrypt your personal information and doesn?��t track or store your online activity or location.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC98_1_Norton_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC98","image":"https://media.go2speed.org/brand/files/arabclicks/721/adv_norton_icon.jpg","url":"https://ae.norton.com/products","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1403","name":"Get upto 26.9AED cashback on Norton","description":"Get upto 26.9AED cashback on Norton\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":26.9,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/721/adv_norton_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=721&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC98&aff_sub3=1403&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC98&aff_sub3=1403&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["security-services","software","business"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"acacb27b-5002-4391-84b9-d397b4c2c778","name":"Expandcart","description":"Build a successful online store in minutes without the need for any technical assistance, and enjoy a 15 days free trial. Start Now!","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/adib/Expandcart.png","dominantColorCode":"#ffffff","externalId":"AC40","image":"https://media.go2speed.org/brand/files/arabclicks/145/adv_expandcart_icon.jpg","url":"https://www.expandcart.com/ar/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1396","name":"Get upto 14% cashback on Expandcart","description":"Get upto 14% cashback on Expandcart\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/145/adv_expandcart_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=145&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC40&aff_sub3=1396&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC40&aff_sub3=1396&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["cloud-services","business","hosting-and-domain-name-registration-services"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9e3c296d-67ce-4ad2-af49-36f76d7e9c02","name":"Daily Mealz","description":"Dailymealz Is a healthy food subscription app, delivers fresh, healthy and tasty meals to your office daily, with weekly or monthly subscriptions.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC31_Daily_Mealz_New_Offer.jpeg","dominantColorCode":"#f3eff0","externalId":"AC31","image":"https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg","url":"https://apps.apple.com/SA/app/id1286998039?mt=8","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like dining, you might like this too","distance":0.0},"offers":[{"id":"1627","name":"Get upto 15% discount on Daily Mealz","description":"Get upto 15% discount on Daily Mealz\n1. The offer is valid upto 2023-01-01\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2020-09-03T00:00:00.389Z","validTo":"2024-01-01T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ac86","termsAndConditions":"1. The offer is valid upto 2023-01-01\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://apps.apple.com/SA/app/id1286998039?mt=8&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1627&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1627&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1398","name":"Get exclusive offers on Daily Mealz","description":"Get exclusive offers on Daily Mealz\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":25.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=542&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1398&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1398&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["online","subscription-services","business","food-delivery-services"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"f1bd8cae-9374-4037-9b8a-eb1740141a04","name":"The Entertainer","description":"The Entertainer provides of two-for-one incentive offers and other discounts across the Middle East, Asia, South Africa & Europe.","category":"miscellaneous stores","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg","dominantColorCode":"#FCFFE0","externalId":"DC52","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC52_1_The_Entertainer_New_Image.jpg","url":"https://www.theentertainerme.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"863","name":"Get exclusive offers on The Entertainer","description":"Get exclusive offers on The Entertainer\n1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2022-04-07T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"AED","cashbackValue":4.0,"offerStatus":"active","url":"https://go.urtrackinglink.com/aff_c?offer_id=1171&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}}],"tags":["online","business","application"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"811b22c5-0cb8-43fd-b9c7-1a79d12267a5","name":"Edx","description":"edX is the trusted platform for education and learning. Founded by Harvard and MIT, edX is home to more than 20 million learners, the majority of top-ranked universities in the world and industry-leading companies.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC36_Edx_1.png","dominantColorCode":"#97F19E","externalId":"AC36","image":"https://media.go2speed.org/brand/files/arabclicks/203/adv_edx_icon.jpg","url":"https://www.edx.org","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1377","name":"Get upto 9% cashback on Edx","description":"Get upto 9% cashback on Edx\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/203/adv_edx_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=203&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC36&aff_sub3=1377&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC36&aff_sub3=1377&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["online","business","educational-services"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"fde2e6d1-7c24-4ba8-85a7-f51d98113562","name":"Wondershare","description":"Our software and products are used in over 150 countries world-wide. We’re continually inspired by our users, and we’re committed to creating simple and easy-to-use software for their needs.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD82_1_Wondershare_New_Image.jpg","dominantColorCode":"#080c0b","externalId":"AD82","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","url":"https://www.wondershare.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1713","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SENWSAFF","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/k4jy95u2asd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1713&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1713&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1656","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SENKPAFF","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/dyitz6gy4jd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1656&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1656&subid3=crayon","claimed":false,"redeemed":false}},{"id":"22107","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-08T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MBRAFF01","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/m7udv5sxgrd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=22107&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=22107&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1851","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SENPXAFF","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/d570o6uk0zd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1851&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1851&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1890","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SESAFFED","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/10yvt43faxd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1890&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1890&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1655","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE15","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/vi89ojmqhrd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1655&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1655&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1894","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE15","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/tnqqga5s9vd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1894&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1894&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1665","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE15","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/hktyityzwed193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1665&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1665&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1477","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SENVCAFF","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/4k0o2wiie7d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1477&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1477&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1544","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MESAFF07","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/ubvlj4rk3zd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1544&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1544&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1644","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-04-01\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-04-01T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"LENAFF5","termsAndConditions":"1. The offer is valid upto 2022-04-01\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/lpg6b4t7cod193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1644&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1644&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1868","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MESAFF08","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/o3eflcirk4d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1868&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1868&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1759","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MESAFF10","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/irln98u23id193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1759&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1759&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1429","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"MESAFF05","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/538dbfwnzpd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1429&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1429&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1586","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE10","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/dt65ytld0cd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1586&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1586&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1743","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE15","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9e629ubp62d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1743&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1743&subid3=crayon","claimed":false,"redeemed":false}},{"id":"1420","name":"Get exclusive offers on Wondershare","description":"Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2023-03-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":28.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"SAFDE20","termsAndConditions":"1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/2vrlqzg3lbd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1420&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1420&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["online","software","business"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7250cc6f-9836-4e35-969b-abede97f2e2b","name":"Microsoft","description":"Designed to help you achieve more with innovative Office apps, intelligent cloud services, and world-class security.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC85_1_Microsoft_New_Image.jpg","dominantColorCode":"#fbfbfb","externalId":"AC85","image":"https://media.go2speed.org/brand/files/arabclicks/815/adv_microsoft_icon.jpg","url":"https://www.microsoft.com/en-ww/microsoft-365/buy/compare-all-microsoft-365-products","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1408","name":"Get upto 3.2AED cashback on Microsoft","description":"Get upto 3.2AED cashback on Microsoft\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/815/adv_microsoft_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=815&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC85&aff_sub3=1408&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC85&aff_sub3=1408&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["software","business"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"197eba8d-51f0-4261-99bd-ae3c54c2ee73","name":"Groupon","description":"Discover & Save with Over 300k of the Best Deals and Things to Do Near You.","category":"miscellaneous stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC58_1_Groupon_New_Image.jpg","dominantColorCode":"#021a1c","externalId":"AC58","image":"https://media.go2speed.org/brand/files/arabclicks/214/adv_groupon_icon.jpg","url":"https://www.groupon.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like business, you might like this too","distance":0.0},"offers":[{"id":"1404","name":"Get upto 6% cashback on Groupon","description":"Get upto 6% cashback on Groupon\n1. The offer is valid upto 2023-12-22\n2. The offer is valid for Travel, Services, Entertainment & Restaurants only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-22T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/214/adv_groupon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-22\n2. The offer is valid for Travel, Services, Entertainment & Restaurants only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=214&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC58&aff_sub3=1404&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC58&aff_sub3=1404&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["online","corporate","business"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.097812Z"}]}
156
Then status 200
0
157
Then print response
18
20:57:05.960 [print] {
"id": "gZRAuGckQCaRI8aWrFhbwg",
"choices": [
{
"id": "mOWrrg6IT0SW_TdvGo6Tag",
"listName": "Expiring Soon",
"listType": "EXPIRING_SOON",
"totalCount": 1,
"items": [
{
"item": {
"id": "f1bd8cae-9374-4037-9b8a-eb1740141a04",
"name": "The Entertainer",
"description": "The Entertainer provides of two-for-one incentive offers and other discounts across the Middle East, Asia, South Africa & Europe.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg",
"dominantColorCode": "#FCFFE0",
"distance": 0.0,
"externalId": "DC52",
"tasteMatchScoreReason": "Because you like business, you might like this too",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC52_1_The_Entertainer_New_Image.jpg",
"tasteMatchScore": 70,
"url": "https://www.theentertainerme.com/"
},
"offers": [
{
"id": "863",
"name": "Get exclusive offers on The Entertainer",
"description": "Get exclusive offers on The Entertainer\n1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2022-04-07T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "AED",
"cashbackValue": 4.0,
"offerStatus": "active",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1171&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"business",
"application"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.097153Z"
},
{
"id": "CMrLz1_5QYabia-x0hHc1w",
"listName": "Best-selling offers",
"listType": "POPULARITY",
"totalCount": 10,
"items": [
{
"item": {
"id": "a31f7738-da4f-4c97-a61c-5e7b0627be96",
"name": "Udemy",
"description": "Udemy is an online learning and teaching marketplace with over 150000 courses and 24 million students.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC151_1_Udemy_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC151",
"image": "https://media.go2speed.org/brand/files/arabclicks/446/adv_udemy_icon.jpg",
"url": "https://www.udemy.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1405",
"name": "Get upto 10% cashback on Udemy",
"description": "Get upto 10% cashback on Udemy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/446/adv_udemy_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=446&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC151&aff_sub3=1405&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC151&aff_sub3=1405&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"business",
"e-commerce"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "e502ee5b-556b-417e-9f37-7f77a3dbb09c",
"name": "Norton",
"description": "Norton Secure VPN is a no-log virtual private network (VPN) that helps encrypt your personal information and doesn?��t track or store your online activity or location.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC98_1_Norton_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC98",
"image": "https://media.go2speed.org/brand/files/arabclicks/721/adv_norton_icon.jpg",
"url": "https://ae.norton.com/products",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1403",
"name": "Get upto 26.9AED cashback on Norton",
"description": "Get upto 26.9AED cashback on Norton\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 26.9,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/721/adv_norton_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=721&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC98&aff_sub3=1403&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC98&aff_sub3=1403&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"security-services",
"software",
"business"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "981667f2-1071-4435-bca9-5708bbd850e2",
"name": "Pyypl App",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2283_1_Pyypl_App_New_Image.jpg",
"dominantColorCode": "#3afcb6",
"externalId": "AC2283",
"image": "https://media.go2speed.org/brand/files/arabclicks/1033/adv_pyypl_icon.jpg",
"url": "https://yimlo.app.link/h6wItBgzRgb",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "6885",
"name": "Get exclusive offers on Pyypl App",
"description": "Get exclusive offers on Pyypl App\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Business & Finance only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/1033/adv_pyypl_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Business & Finance only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=1033&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC2283&aff_sub3=6885&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "acacb27b-5002-4391-84b9-d397b4c2c778",
"name": "Expandcart",
"description": "Build a successful online store in minutes without the need for any technical assistance, and enjoy a 15 days free trial. Start Now!",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/adib/Expandcart.png",
"dominantColorCode": "#ffffff",
"externalId": "AC40",
"image": "https://media.go2speed.org/brand/files/arabclicks/145/adv_expandcart_icon.jpg",
"url": "https://www.expandcart.com/ar/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1396",
"name": "Get upto 14% cashback on Expandcart",
"description": "Get upto 14% cashback on Expandcart\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/145/adv_expandcart_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=145&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC40&aff_sub3=1396&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC40&aff_sub3=1396&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"cloud-services",
"business",
"hosting-and-domain-name-registration-services"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9e3c296d-67ce-4ad2-af49-36f76d7e9c02",
"name": "Daily Mealz",
"description": "Dailymealz Is a healthy food subscription app, delivers fresh, healthy and tasty meals to your office daily, with weekly or monthly subscriptions.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC31_Daily_Mealz_New_Offer.jpeg",
"dominantColorCode": "#f3eff0",
"externalId": "AC31",
"image": "https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg",
"url": "https://apps.apple.com/SA/app/id1286998039?mt=8",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like dining, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1627",
"name": "Get upto 15% discount on Daily Mealz",
"description": "Get upto 15% discount on Daily Mealz\n1. The offer is valid upto 2023-01-01\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2020-09-03T00:00:00.389Z",
"validTo": "2024-01-01T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ac86",
"termsAndConditions": "1. The offer is valid upto 2023-01-01\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://apps.apple.com/SA/app/id1286998039?mt=8&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1627&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1627&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1398",
"name": "Get exclusive offers on Daily Mealz",
"description": "Get exclusive offers on Daily Mealz\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 25.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=542&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1398&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1398&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"subscription-services",
"business",
"food-delivery-services"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "811b22c5-0cb8-43fd-b9c7-1a79d12267a5",
"name": "Edx",
"description": "edX is the trusted platform for education and learning. Founded by Harvard and MIT, edX is home to more than 20 million learners, the majority of top-ranked universities in the world and industry-leading companies.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC36_Edx_1.png",
"dominantColorCode": "#97F19E",
"externalId": "AC36",
"image": "https://media.go2speed.org/brand/files/arabclicks/203/adv_edx_icon.jpg",
"url": "https://www.edx.org",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1377",
"name": "Get upto 9% cashback on Edx",
"description": "Get upto 9% cashback on Edx\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/203/adv_edx_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=203&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC36&aff_sub3=1377&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC36&aff_sub3=1377&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"business",
"educational-services"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "fde2e6d1-7c24-4ba8-85a7-f51d98113562",
"name": "Wondershare",
"description": "Our software and products are used in over 150 countries world-wide. We\u2019re continually inspired by our users, and we\u2019re committed to creating simple and easy-to-use software for their needs.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD82_1_Wondershare_New_Image.jpg",
"dominantColorCode": "#080c0b",
"externalId": "AD82",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"url": "https://www.wondershare.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1713",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SENWSAFF",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/k4jy95u2asd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1713&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1713&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1656",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SENKPAFF",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/dyitz6gy4jd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1656&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1656&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "22107",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-08T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MBRAFF01",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/m7udv5sxgrd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=22107&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=22107&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1851",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SENPXAFF",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/d570o6uk0zd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1851&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1851&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1890",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SESAFFED",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/10yvt43faxd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1890&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1890&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1655",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE15",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/vi89ojmqhrd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1655&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1655&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1894",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE15",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/tnqqga5s9vd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1894&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1894&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1665",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE15",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/hktyityzwed193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1665&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1665&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1477",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SENVCAFF",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/4k0o2wiie7d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1477&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1477&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1544",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MESAFF07",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/ubvlj4rk3zd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1544&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1544&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1644",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-04-01\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-04-01T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "LENAFF5",
"termsAndConditions": "1. The offer is valid upto 2022-04-01\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/lpg6b4t7cod193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1644&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1644&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1868",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MESAFF08",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/o3eflcirk4d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1868&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1868&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1759",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MESAFF10",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/irln98u23id193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1759&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1759&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1429",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MESAFF05",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/538dbfwnzpd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1429&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1429&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1586",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE10",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/dt65ytld0cd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1586&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1586&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1743",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE15",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9e629ubp62d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1743&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1743&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1420",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE20",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/2vrlqzg3lbd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1420&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1420&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"software",
"business"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "197eba8d-51f0-4261-99bd-ae3c54c2ee73",
"name": "Groupon",
"description": "Discover & Save with Over 300k of the Best Deals and Things to Do Near You.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC58_1_Groupon_New_Image.jpg",
"dominantColorCode": "#021a1c",
"externalId": "AC58",
"image": "https://media.go2speed.org/brand/files/arabclicks/214/adv_groupon_icon.jpg",
"url": "https://www.groupon.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1404",
"name": "Get upto 6% cashback on Groupon",
"description": "Get upto 6% cashback on Groupon\n1. The offer is valid upto 2023-12-22\n2. The offer is valid for Travel, Services, Entertainment & Restaurants only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-22T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/214/adv_groupon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-22\n2. The offer is valid for Travel, Services, Entertainment & Restaurants only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=214&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC58&aff_sub3=1404&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC58&aff_sub3=1404&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"corporate",
"business"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "2a0ec76e-0ad6-4c76-8bbe-466a5a2f7f62",
"name": "Salla",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2285_1_Salla_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC2285",
"image": "https://media.go2speed.org/brand/files/arabclicks/1029/adv_salla_icon.jpg",
"url": "https://salla.sa/site/start/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "6882",
"name": "Get upto 10% cashback on Salla",
"description": "Get upto 10% cashback on Salla\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/1029/adv_salla_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=1029&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC2285&aff_sub3=6882&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7250cc6f-9836-4e35-969b-abede97f2e2b",
"name": "Microsoft",
"description": "Designed to help you achieve more with innovative Office apps, intelligent cloud services, and world-class security.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC85_1_Microsoft_New_Image.jpg",
"dominantColorCode": "#fbfbfb",
"externalId": "AC85",
"image": "https://media.go2speed.org/brand/files/arabclicks/815/adv_microsoft_icon.jpg",
"url": "https://www.microsoft.com/en-ww/microsoft-365/buy/compare-all-microsoft-365-products",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1408",
"name": "Get upto 3.2AED cashback on Microsoft",
"description": "Get upto 3.2AED cashback on Microsoft\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/815/adv_microsoft_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=815&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC85&aff_sub3=1408&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC85&aff_sub3=1408&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"software",
"business"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.097501Z"
},
{
"id": "8FwKwTM-SAyNvj1knxVsQw",
"listName": "Because you are interested in web services & dining",
"listType": "TAG_BASED",
"totalCount": 9,
"items": [
{
"item": {
"id": "a31f7738-da4f-4c97-a61c-5e7b0627be96",
"name": "Udemy",
"description": "Udemy is an online learning and teaching marketplace with over 150000 courses and 24 million students.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC151_1_Udemy_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC151",
"image": "https://media.go2speed.org/brand/files/arabclicks/446/adv_udemy_icon.jpg",
"url": "https://www.udemy.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1405",
"name": "Get upto 10% cashback on Udemy",
"description": "Get upto 10% cashback on Udemy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/446/adv_udemy_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=446&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC151&aff_sub3=1405&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC151&aff_sub3=1405&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"business",
"e-commerce"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "e502ee5b-556b-417e-9f37-7f77a3dbb09c",
"name": "Norton",
"description": "Norton Secure VPN is a no-log virtual private network (VPN) that helps encrypt your personal information and doesn?��t track or store your online activity or location.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC98_1_Norton_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC98",
"image": "https://media.go2speed.org/brand/files/arabclicks/721/adv_norton_icon.jpg",
"url": "https://ae.norton.com/products",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1403",
"name": "Get upto 26.9AED cashback on Norton",
"description": "Get upto 26.9AED cashback on Norton\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 26.9,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/721/adv_norton_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=721&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC98&aff_sub3=1403&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC98&aff_sub3=1403&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"security-services",
"software",
"business"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "acacb27b-5002-4391-84b9-d397b4c2c778",
"name": "Expandcart",
"description": "Build a successful online store in minutes without the need for any technical assistance, and enjoy a 15 days free trial. Start Now!",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/adib/Expandcart.png",
"dominantColorCode": "#ffffff",
"externalId": "AC40",
"image": "https://media.go2speed.org/brand/files/arabclicks/145/adv_expandcart_icon.jpg",
"url": "https://www.expandcart.com/ar/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1396",
"name": "Get upto 14% cashback on Expandcart",
"description": "Get upto 14% cashback on Expandcart\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/145/adv_expandcart_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=145&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC40&aff_sub3=1396&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC40&aff_sub3=1396&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"cloud-services",
"business",
"hosting-and-domain-name-registration-services"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9e3c296d-67ce-4ad2-af49-36f76d7e9c02",
"name": "Daily Mealz",
"description": "Dailymealz Is a healthy food subscription app, delivers fresh, healthy and tasty meals to your office daily, with weekly or monthly subscriptions.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC31_Daily_Mealz_New_Offer.jpeg",
"dominantColorCode": "#f3eff0",
"externalId": "AC31",
"image": "https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg",
"url": "https://apps.apple.com/SA/app/id1286998039?mt=8",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like dining, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1627",
"name": "Get upto 15% discount on Daily Mealz",
"description": "Get upto 15% discount on Daily Mealz\n1. The offer is valid upto 2023-01-01\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2020-09-03T00:00:00.389Z",
"validTo": "2024-01-01T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ac86",
"termsAndConditions": "1. The offer is valid upto 2023-01-01\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://apps.apple.com/SA/app/id1286998039?mt=8&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1627&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1627&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1398",
"name": "Get exclusive offers on Daily Mealz",
"description": "Get exclusive offers on Daily Mealz\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 25.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/542/adv_dailymealz_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=542&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1398&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC31&aff_sub3=1398&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"subscription-services",
"business",
"food-delivery-services"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "f1bd8cae-9374-4037-9b8a-eb1740141a04",
"name": "The Entertainer",
"description": "The Entertainer provides of two-for-one incentive offers and other discounts across the Middle East, Asia, South Africa & Europe.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg",
"dominantColorCode": "#FCFFE0",
"externalId": "DC52",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC52_1_The_Entertainer_New_Image.jpg",
"url": "https://www.theentertainerme.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "863",
"name": "Get exclusive offers on The Entertainer",
"description": "Get exclusive offers on The Entertainer\n1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2022-04-07T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1171/The ENTERTAINER logo.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "AED",
"cashbackValue": 4.0,
"offerStatus": "active",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1171&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC52&aff_sub3=863&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2040-07-18\n2. The offer is valid for Travel, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"business",
"application"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "811b22c5-0cb8-43fd-b9c7-1a79d12267a5",
"name": "Edx",
"description": "edX is the trusted platform for education and learning. Founded by Harvard and MIT, edX is home to more than 20 million learners, the majority of top-ranked universities in the world and industry-leading companies.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC36_Edx_1.png",
"dominantColorCode": "#97F19E",
"externalId": "AC36",
"image": "https://media.go2speed.org/brand/files/arabclicks/203/adv_edx_icon.jpg",
"url": "https://www.edx.org",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1377",
"name": "Get upto 9% cashback on Edx",
"description": "Get upto 9% cashback on Edx\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/203/adv_edx_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=203&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC36&aff_sub3=1377&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC36&aff_sub3=1377&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"business",
"educational-services"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "fde2e6d1-7c24-4ba8-85a7-f51d98113562",
"name": "Wondershare",
"description": "Our software and products are used in over 150 countries world-wide. We\u2019re continually inspired by our users, and we\u2019re committed to creating simple and easy-to-use software for their needs.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD82_1_Wondershare_New_Image.jpg",
"dominantColorCode": "#080c0b",
"externalId": "AD82",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"url": "https://www.wondershare.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1713",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SENWSAFF",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/k4jy95u2asd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1713&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1713&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1656",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SENKPAFF",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/dyitz6gy4jd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1656&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1656&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "22107",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-08T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MBRAFF01",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/m7udv5sxgrd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=22107&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=22107&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1851",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SENPXAFF",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/d570o6uk0zd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1851&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1851&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1890",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SESAFFED",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/10yvt43faxd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1890&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1890&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1655",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE15",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/vi89ojmqhrd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1655&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1655&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1894",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE15",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/tnqqga5s9vd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1894&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1894&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1665",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE15",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/hktyityzwed193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1665&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1665&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1477",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SENVCAFF",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/4k0o2wiie7d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1477&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1477&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1544",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MESAFF07",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/ubvlj4rk3zd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1544&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1544&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1644",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-04-01\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-04-01T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "LENAFF5",
"termsAndConditions": "1. The offer is valid upto 2022-04-01\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/lpg6b4t7cod193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1644&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1644&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1868",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MESAFF08",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/o3eflcirk4d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1868&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1868&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1759",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MESAFF10",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/irln98u23id193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1759&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1759&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1429",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "MESAFF05",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/538dbfwnzpd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1429&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1429&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1586",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE10",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/dt65ytld0cd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1586&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1586&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1743",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE15",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9e629ubp62d193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1743&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1743&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1420",
"name": "Get exclusive offers on Wondershare",
"description": "Get exclusive offers on Wondershare\n1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2023-03-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 28.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/2/11/23157-92030bffb3db8781.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SAFDE20",
"termsAndConditions": "1. The offer is valid upto 2022-03-27\n2. The offer is valid for Services, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/2vrlqzg3lbd193180536ef655e4ac9/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1420&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD82&subid2=1420&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"software",
"business"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7250cc6f-9836-4e35-969b-abede97f2e2b",
"name": "Microsoft",
"description": "Designed to help you achieve more with innovative Office apps, intelligent cloud services, and world-class security.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC85_1_Microsoft_New_Image.jpg",
"dominantColorCode": "#fbfbfb",
"externalId": "AC85",
"image": "https://media.go2speed.org/brand/files/arabclicks/815/adv_microsoft_icon.jpg",
"url": "https://www.microsoft.com/en-ww/microsoft-365/buy/compare-all-microsoft-365-products",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1408",
"name": "Get upto 3.2AED cashback on Microsoft",
"description": "Get upto 3.2AED cashback on Microsoft\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/815/adv_microsoft_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Services only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=815&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC85&aff_sub3=1408&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC85&aff_sub3=1408&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"software",
"business"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "197eba8d-51f0-4261-99bd-ae3c54c2ee73",
"name": "Groupon",
"description": "Discover & Save with Over 300k of the Best Deals and Things to Do Near You.",
"category": "miscellaneous stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC58_1_Groupon_New_Image.jpg",
"dominantColorCode": "#021a1c",
"externalId": "AC58",
"image": "https://media.go2speed.org/brand/files/arabclicks/214/adv_groupon_icon.jpg",
"url": "https://www.groupon.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like business, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1404",
"name": "Get upto 6% cashback on Groupon",
"description": "Get upto 6% cashback on Groupon\n1. The offer is valid upto 2023-12-22\n2. The offer is valid for Travel, Services, Entertainment & Restaurants only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-22T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/214/adv_groupon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-22\n2. The offer is valid for Travel, Services, Entertainment & Restaurants only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=214&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC58&aff_sub3=1404&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC58&aff_sub3=1404&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"online",
"corporate",
"business"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.097812Z"
}
]
}
Scenario: [11.1:175]
To validate the response for category choices list
ms: 2150
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:04.507 karate.env system property was: null
20:57:04.508 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
165
Given headers req_headers
0
166
And url baseUrl
0
167
And path choiceApiUrl
1
168
And request {category:retail stores, choiceCount:10, lang:en,city:dubai,includeCampaigns:true,servedAt:2022-04-06T23:59:59.000+00:00, }
0
169
When method Post
2090
20:57:04.513 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/choice/list
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 139
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"category":"retail stores","choiceCount":10,"lang":"en","city":"dubai","includeCampaigns":true,"servedAt":"2022-04-06T23:59:59.000+00:00"}
20:57:06.583 response time in milliseconds: 2056
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:05 GMT
{"id":"LzPZcfqBTHiYNr4YlLO_xQ","choices":[{"id":"f3QrGM7uRbW6ykl8YIr2mA","listName":"Selected just for you","listType":"NEXT_BEST","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.401235Z"},{"id":"SNWFFL-FQCqjzqfFAKauxg","listName":"Deals of the day","listType":"TRENDING","totalCount":9,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"3d541c25-6df9-4fd4-b5ce-8061a12abe67","name":"Ounass","description":"Many luxury fashion designers in the Middle East","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg","dominantColorCode":"#d5d5d7","externalId":"AC105","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","url":"https://www.ounass.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like electronic accessories, you might like this too","distance":0.0},"offers":[{"id":"1362","name":"Get upto 6% cashback on Ounass","description":"Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1362&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1843","name":"Get upto 5% discount on Ounass","description":"Get upto 5% discount on Ounass\n1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-06-24T00:00:00.389Z","validTo":"2023-09-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"aco67","termsAndConditions":"1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://ar.ounass.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1843&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1361","name":"Get exclusive offers on Ounass","description":"Get exclusive offers on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=194&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1361&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","home-and-kitchen","home-furnishings","shoes-and-accessories-store","apparel-and-accessories","gifts-and-souvenirs","furniture","accessories-store","health-and-beauty","multi-brand","standalone-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4a28a630-e64f-4287-9713-47b46450cb38","name":"Toys R Us","description":"Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don’t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We’re always growing and we’ll have more stores and online stores opening in the region soon – we can’t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC55","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","url":"https://www.toysrusmena.com/en-AE/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too","distance":0.0},"offers":[{"id":"842","name":"Get exclusive offers on Toys R Us","description":"Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC55&aff_sub3=842&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","video-games","party-supplies","bicycle-and-accessories","art-and-craft-supplies","multi-brand","costumes","sporting-equipment","online-and-in-store","toys-and-games","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","kids-utilities","games","international","shopping-mall","computer-and-electronics","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"58ab63ee-12e3-4d54-a9cc-3ea7619a8221","name":"Soukare","description":"souKare is one of the largest online stores for colored contact lenses.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg","dominantColorCode":"#e5f2fb","externalId":"AC124","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","url":"https://soukare.com/ar-sa/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"1389","name":"Get upto 5% cashback on Soukare","description":"Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC124&aff_sub3=1389&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","perfumery","health-and-beauty","multi-brand","standalone-store","personal-care","online-and-in-store","nutritional-supplements","pharmacy","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.401596Z"},{"id":"SzzSoxt4SaS-InRpFToYGQ","listName":"Best-selling offers","listType":"POPULARITY","totalCount":10,"items":[{"item":{"id":"8affa868-b20c-4e20-ba77-84b0679e683b","name":"Babysouk","description":"babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png","dominantColorCode":"#ffffff","externalId":"DC9","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","url":"https://www.babysouk.com/","tasteMatchScore":84,"tasteMatchScoreReason":"Because you like electronic accessories, you might like this too","distance":0.0},"offers":[{"id":"839","name":"Get exclusive offers on Babysouk","description":"Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC9&aff_sub3=839&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","multi-brand","online-and-in-store","travel-utilities","large-product-range","home-and-kitchen","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","kids-furniture","accessories-store","travel-accessories","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"12ba32e1-6757-4ab3-ad71-a00f8144c730","name":"Ferns N Petals","description":"Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg","dominantColorCode":"#d1b4ad","externalId":"DC26","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","url":"https://www.fnp.ae/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"1758","name":"Get upto 8% cashback on Ferns N Petals","description":"Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","online","basic-service","international","chocolates","gifts-and-souvenirs","florist","food-beverages-and-groceries","dry-fruits-and-nuts","confectionery","delivery-service","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"10101386-6f01-4f71-b603-ea46c20f2eb8","name":"Brands For Less","description":"The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg","dominantColorCode":"#00adcb","externalId":"DC13","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","url":"https://www.brandsforless.ae/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"830","name":"Get upto 1.5% cashback on Brands For Less","description":"Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-11-22T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["perfumery","kitchen-appliances","automobile-and-accessories","pet-supplies","health-and-beauty","pet-and-pet-supplies","online-and-in-store","footwear-store","computer-and-accessories","department-store","home-and-kitchen","home-furnishings","apparel-and-accessories","international","accessories-store","shopping-mall","mobile-phones","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dffc64f3-a8f1-4fbf-82a3-370a0c3999a7","name":"Amazon","description":"Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png","dominantColorCode":"#eaeceb","externalId":"AC8","image":"https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg","url":"https://www.amazon.sa","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"13843","name":"Get upto 8.4AED cashback on Amazon Home Services Bounty","description":"Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-02-19T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC8&aff_sub3=13843&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["video-games","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","multi-brand","footwear-store","toys-and-games","home-appliances","home-and-kitchen","home-furnishings","online","kitchen-accessories","luggage-store","books-and-music","accessories-store","computer-and-electronics","clothing-store","travel-accessories","groceries","basic-service","hypermarket","kitchen-appliances","pet-supplies","furniture","sporting-equipment","music-store","computer-and-accessories","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","gifts-and-souvenirs","mobile-phones","cosmetics-and-skincare","books","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4248f84c-bbca-425c-b193-211ca80dff51","name":"Aliexpress","description":"Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg","dominantColorCode":"#ced1d8","externalId":"AC7","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","url":"https://ar.aliexpress.com/","tasteMatchScore":74,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1357","name":"Get upto 9% cashback on Aliexpress","description":"Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["kitchen-appliances","pet-and-pet-supplies","multi-brand","sporting-equipment","toys-and-games","sports-and-outdoors","department-store","online","apparel-and-accessories","games","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"11d00ba0-7adc-4004-bb90-f5272ed9a5db","name":"Fresh To Home","description":"Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg","dominantColorCode":"#feffff","externalId":"AC51","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","url":"https://ae.freshtohome.com","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like groceries, you might like this too","distance":0.0},"offers":[{"id":"1374","name":"Get exclusive offers on Fresh To Home","description":"Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"988","name":"Get upto 4.5AED cashback on Fresh To Home","description":"Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","fruits-and-vegetables-store","specialty-food-products","food-beverages-and-groceries","meat-products","online-and-in-store","delivery-service","sea-food-products","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"89531d1e-212d-42dd-a3eb-cc740cd34ebe","name":"Banggood","description":"Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC19","image":"http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png","url":"https://www.banggood.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1370","name":"Get upto 22% cashback on Banggood","description":"Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":22.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC19&aff_sub3=1370&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["hardware","stationery","pet-supplies","health-and-beauty","pet-and-pet-supplies","multi-brand","sporting-equipment","sports-and-outdoors","department-store","home-appliances","home-and-kitchen","home-furnishings","online","apparel-and-accessories","international","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","personal-care","tools-and-home-improvement","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"42c04e94-9d07-4db2-a527-3bdbd848b62e","name":"Rosemary Perfumes","description":"The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg","dominantColorCode":"#becdd8","externalId":"DC48","image":"https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png","url":"https://www.rosemaryperfumes.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"13838","name":"Get exclusive offers on Rose Mary Perfumes","description":"Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-02-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","perfumery","local","shopping-mall","health-and-beauty","multi-brand","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7cc55868-bf35-4a9e-904b-0807697f1f61","name":"Rivolishop","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD2055_Rivolishop_New_Offer.jpeg","dominantColorCode":"#080808","externalId":"AD2055","image":"https://media.go2speed.org/brand/files/dcm/1296/rivoli-shop-vouchers-code.png","url":"https://rivolishop.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"7118","name":"Get upto 5% discount on Rivolishop","description":"Get upto 5% discount on Rivolishop\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-09-08T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/rivolishop_offer.jpeg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://rivolishop.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD2055&subid2=7118&subid3=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"891c1938-90b0-4eb9-9777-1f384f53a1b4","name":"Tomtop","description":"Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD77","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","url":"http://tomtop.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too","distance":0.0},"offers":[{"id":"6295","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMR5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6224","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6137","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMK6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6288","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMH7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon","claimed":false,"redeemed":false}},{"id":"5983","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMJ6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6045","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6307","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADML6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6285","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6076","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6239","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMI7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6233","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6252","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMP8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6217","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6145","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMS8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6260","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMF8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6271","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMVD7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6274","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMET7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["stationery","automobile-and-accessories","bicycle-and-accessories","health-and-beauty","cameras-and-accessories","pet-and-pet-supplies","multi-brand","toys-and-games","home-appliances","home-and-kitchen","online","kitchen-accessories","computer-and-electronics","regular-retail-store","basic-service","kitchen-appliances","pet-supplies","home-audio-and-accessories","sporting-equipment","sports-and-outdoors","toys","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","cosmetics-and-skincare","school-and-office-supplies","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.402141Z"},{"id":"X2HHZsvUT5SrPoV4lYhd2Q","listName":"Because you are interested in fashion & toys","listType":"TAG_BASED","totalCount":10,"items":[{"item":{"id":"12ba32e1-6757-4ab3-ad71-a00f8144c730","name":"Ferns N Petals","description":"Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg","dominantColorCode":"#d1b4ad","externalId":"DC26","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","url":"https://www.fnp.ae/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"1758","name":"Get upto 8% cashback on Ferns N Petals","description":"Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","online","basic-service","international","chocolates","gifts-and-souvenirs","florist","food-beverages-and-groceries","dry-fruits-and-nuts","confectionery","delivery-service","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4248f84c-bbca-425c-b193-211ca80dff51","name":"Aliexpress","description":"Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg","dominantColorCode":"#ced1d8","externalId":"AC7","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","url":"https://ar.aliexpress.com/","tasteMatchScore":74,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1357","name":"Get upto 9% cashback on Aliexpress","description":"Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["kitchen-appliances","pet-and-pet-supplies","multi-brand","sporting-equipment","toys-and-games","sports-and-outdoors","department-store","online","apparel-and-accessories","games","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"11d00ba0-7adc-4004-bb90-f5272ed9a5db","name":"Fresh To Home","description":"Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg","dominantColorCode":"#feffff","externalId":"AC51","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","url":"https://ae.freshtohome.com","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like groceries, you might like this too","distance":0.0},"offers":[{"id":"1374","name":"Get exclusive offers on Fresh To Home","description":"Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"988","name":"Get upto 4.5AED cashback on Fresh To Home","description":"Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","fruits-and-vegetables-store","specialty-food-products","food-beverages-and-groceries","meat-products","online-and-in-store","delivery-service","sea-food-products","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"891c1938-90b0-4eb9-9777-1f384f53a1b4","name":"Tomtop","description":"Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD77","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","url":"http://tomtop.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too","distance":0.0},"offers":[{"id":"6295","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMR5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6224","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6137","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMK6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6288","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMH7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon","claimed":false,"redeemed":false}},{"id":"5983","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMJ6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6045","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6307","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADML6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6285","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6076","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6239","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMI7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6233","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6252","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMP8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6217","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6145","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMS8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6260","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMF8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6271","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMVD7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6274","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMET7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["stationery","automobile-and-accessories","bicycle-and-accessories","health-and-beauty","cameras-and-accessories","pet-and-pet-supplies","multi-brand","toys-and-games","home-appliances","home-and-kitchen","online","kitchen-accessories","computer-and-electronics","regular-retail-store","basic-service","kitchen-appliances","pet-supplies","home-audio-and-accessories","sporting-equipment","sports-and-outdoors","toys","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","cosmetics-and-skincare","school-and-office-supplies","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"d67c656f-04a0-4e11-9b66-4ab180004234","name":"Danube Home","description":"Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region’s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC269","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","url":"https://uae.danubehome.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like kitchen essentials, you might like this too","distance":0.0},"offers":[{"id":"1350","name":"Get exclusive offers on Danube Home","description":"Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-11-10T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.9,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1350&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1539","name":"Get upto 50% discount on Danube Home","description":"Get upto 50% discount on Danube Home\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/danubehome_offer.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"AFYZTMC","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://uae.danubehome.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1539&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","hardware","kitchen-appliances","home-improvement-supplies","furniture","health-and-beauty","multi-brand","online-and-in-store","toys-and-games","toys","plant-nursery","large-product-range","home-furnishings","home-and-kitchen","international","apparel-and-accessories","kitchen-accessories","kids-utilities","gardening-supplies","games","paint-supplies","cosmetics-and-skincare","personal-care","tools-and-home-improvement","delivery-service","fertilizer","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dcd9f833-e362-3d15-b0c4-501f4df657d8","name":"Saramart","description":"Buy products for the best prices with free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg","dominantColorCode":"#909193","externalId":"DC49","image":"https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png","url":"APP ONLY","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2113","name":"Get upto 20% discount on Saramart","description":"Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"SM118","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=DC49&subid2=2113&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["multi-brand","automobile-and-accessories","clothing-store","hardware","home-audio-and-accessories","personal-care","art-and-craft-supplies","video-games","stationery","toys","plant-nursery","toys-and-games","large-product-range","home-appliances","regular-retail-store","mobile-phones","cosmetics-and-skincare","health-and-beauty","international","art-and-craft-supplies","basic-service","school-and-office-supplies","fertilizer","kitchen-appliances","home-furnishings","kitchen-accessories","apparel-and-accessories","home-and-kitchen","tools-and-home-improvement","perfumery","online-and-in-store","computer-and-electronics","accessories-store","home-improvement-supplies","kids-utilities","gardening-supplies","games","shoes-and-accessories-store","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"ec410551-b8dd-387e-beb3-5b50b06e3125","name":"Sivvi","description":"SIVVI is the only app you need for shopping fashion in the Middle East. Find the biggest brands for the best prices, and be inspired by the latest trends and easy to shop edits for women, men and kids.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD71_1_Sivvi_New_Image.jpg","dominantColorCode":"#eff2f9","externalId":"AD71","image":"https://dpimages.crayondata.com/high-res-image/adib/sivvi-logo.jpg","url":"https://www.sivvi.com/uae-en/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"7124","name":"Get upto 5% discount on Sivvi","description":"Get upto 5% discount on Sivvi\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-09-27T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/sivvi1%20Offer.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://www.sivvi.com/uae-en/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD71&subid2=7124&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["gifts-and-souvenirs","perfumery","home-furnishings","regular-retail-store","delivery-service","personal-care","cosmetics-and-skincare","health-and-beauty","apparel-and-accessories","home-and-kitchen","kitchen-accessories","large-product-range","gifts-and-souvenirs","shoes-and-accessories-store","basic-service","apparel-and-accessories","other-products","multi-brand","online"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"49629e58-8fe0-3bf2-8e19-882a4ee3176e","name":"Tryano","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/BO4843_1_Tryano_New_Image.jpg","dominantColorCode":"#f1f1f1","externalId":"BO4843","image":"https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg","url":"https://www.tryano.com/en-ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"6332","name":"Get exclusive offers on Tryano","description":"Get exclusive offers on Tryano\n1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-04-13T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=974&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=BO4843&aff_sub3=6332&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["clothing-store","accessories-store","regular-retail-store","basic-service","large-product-range","premium","online-and-in-store","local"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7eb58a5a-9110-49cd-9e41-d15bc99439c2","name":"Mothercare","description":"The Mothercare brand is synonymous with children and parenting. it carries with it a reputation for specialism, quality, safety and innovation in providing products and services for mothers, mothers-to-be, babies and young children","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC86_1_Mothercare_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC86","image":"https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg","url":"https://www.mothercare.ae/en/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"892","name":"Get upto 10% cashback on Mothercare","description":"Get upto 10% cashback on Mothercare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=403&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC86&aff_sub3=892&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","basic-service","apparel-and-accessories","kids-utilities","standalone-store","clothing-store","online-and-in-store","toys-and-games","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"55e97f4d-2f76-4ba1-b417-27d0fece9199","name":"Blackshark","description":"Black Shark is a cutting-edge gaming technology company developing a 360 degree gaming eco-system based on hardware, software and service. This is currently carried out by our flagship gaming smartphones. Ultimately we aim to provide an unmatched gaming experience to our international fanbase and to create the best gaming world with global gamers.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD10_1_Blackshark_New_Image.jpg","dominantColorCode":"#FCFFE0","externalId":"AD10","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png","url":"http://global.blackshark.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"4784","name":"Get upto 2% cashback on Blackshark","description":"Get upto 2% cashback on Blackshark\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-01T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://ad.admitad.com/g/8wvyx9bxy9d193180536480c2cdbcd/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD10&subid2=4784&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","video-games","single-brand","international","mobile-phones","computer-and-electronics","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.402558Z"},{"id":"D_olc69wQvi300PZpl-GKw","listName":"What’s new in toys, games & fashion","listType":"DISCOVERY","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.402793Z"},{"id":"XH2E3pTtTtijw96a-wEX1Q","listName":"Your favorites","listType":"REPEAT","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.402986Z"},{"id":"5VD-0-4bQMmYE-oGkNZ-Uw","listName":"Crème de la crème","listType":"CROSS_CATEGORY","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.403209Z"},{"id":"S81i6fPWSJ-yDdo3pjzXOw","listName":"Season of love","listType":"202107","totalCount":2,"items":[{"item":{"id":"42c04e94-9d07-4db2-a527-3bdbd848b62e","name":"Rosemary Perfumes","description":"The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg","dominantColorCode":"#becdd8","externalId":"DC48","image":"https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png","url":"https://www.rosemaryperfumes.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"13838","name":"Get exclusive offers on Rose Mary Perfumes","description":"Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-02-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","perfumery","local","shopping-mall","health-and-beauty","multi-brand","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"07fa5146-8150-42a8-a89a-227304309fe2","name":"Ubuy","description":"Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount","category":"retail stores","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg","dominantColorCode":"#ffffff","externalId":"AC150","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg","url":"https://www.ubuy.com","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like musical instruments, you might like this too","distance":0.0},"offers":[{"id":"890","name":"Get exclusive offers on Ubuy","description":"Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"","cashbackValue":2.5,"offerStatus":"active","url":"https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=890&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}},{"id":"1754","name":"Get upto 10% discount on Ubuy using","description":"Get upto 10% discount on Ubuy using\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-27T00:00:00.389Z","validTo":"2023-02-12T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"uban242","image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"offline coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"","cashbackValue":0.0,"offerStatus":"active","url":"https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1754&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","claimed":false,"redeemed":false}},{"id":"1341","name":"Get exclusive offers on Ubuy","description":"Get exclusive offers on Ubuy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"","cashbackValue":5.0,"offerStatus":"active","url":"https://go.arabclicks.com/aff_c?offer_id=939&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1341&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}},{"id":"1909","name":"Get upto 10% discount on Ubuy","description":"Get upto 10% discount on Ubuy\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-27T00:00:00.389Z","validTo":"2023-02-12T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"uban230","image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"offline coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"","cashbackValue":0.0,"offerStatus":"active","url":"https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1909&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","claimed":false,"redeemed":false}}],"tags":["perfumery","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","cameras-and-accessories","multi-brand","home-appliances","home-and-kitchen","home-furnishings","online","international","kids-utilities","kitchen-accessories","luggage-store","books-and-music","computer-and-electronics","travel-accessories","groceries","regular-retail-store","basic-service","home-improvement-supplies","pet-supplies","furniture","home-audio-and-accessories","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","books","musical-instrument","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.40333Z"}]}
170
Then status 200
0
171
Then print response
58
20:57:06.656 [print] {
"id": "LzPZcfqBTHiYNr4YlLO_xQ",
"choices": [
{
"id": "f3QrGM7uRbW6ykl8YIr2mA",
"listName": "Selected just for you",
"listType": "NEXT_BEST",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.401235Z"
},
{
"id": "SNWFFL-FQCqjzqfFAKauxg",
"listName": "Deals of the day",
"listType": "TRENDING",
"totalCount": 9,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "3d541c25-6df9-4fd4-b5ce-8061a12abe67",
"name": "Ounass",
"description": "Many luxury fashion designers in the Middle East",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg",
"dominantColorCode": "#d5d5d7",
"externalId": "AC105",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"url": "https://www.ounass.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like electronic accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1362",
"name": "Get upto 6% cashback on Ounass",
"description": "Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1362&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1843",
"name": "Get upto 5% discount on Ounass",
"description": "Get upto 5% discount on Ounass\n1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-06-24T00:00:00.389Z",
"validTo": "2023-09-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "aco67",
"termsAndConditions": "1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ar.ounass.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1843&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1361",
"name": "Get exclusive offers on Ounass",
"description": "Get exclusive offers on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=194&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1361&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"home-furnishings",
"shoes-and-accessories-store",
"apparel-and-accessories",
"gifts-and-souvenirs",
"furniture",
"accessories-store",
"health-and-beauty",
"multi-brand",
"standalone-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4a28a630-e64f-4287-9713-47b46450cb38",
"name": "Toys R Us",
"description": "Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don\u2019t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We\u2019re always growing and we\u2019ll have more stores and online stores opening in the region soon \u2013 we can\u2019t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC55",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"url": "https://www.toysrusmena.com/en-AE/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "842",
"name": "Get exclusive offers on Toys R Us",
"description": "Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC55&aff_sub3=842&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"video-games",
"party-supplies",
"bicycle-and-accessories",
"art-and-craft-supplies",
"multi-brand",
"costumes",
"sporting-equipment",
"online-and-in-store",
"toys-and-games",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"kids-utilities",
"games",
"international",
"shopping-mall",
"computer-and-electronics",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "58ab63ee-12e3-4d54-a9cc-3ea7619a8221",
"name": "Soukare",
"description": "souKare is one of the largest online stores for colored contact lenses.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg",
"dominantColorCode": "#e5f2fb",
"externalId": "AC124",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"url": "https://soukare.com/ar-sa/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1389",
"name": "Get upto 5% cashback on Soukare",
"description": "Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC124&aff_sub3=1389&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"perfumery",
"health-and-beauty",
"multi-brand",
"standalone-store",
"personal-care",
"online-and-in-store",
"nutritional-supplements",
"pharmacy",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.401596Z"
},
{
"id": "SzzSoxt4SaS-InRpFToYGQ",
"listName": "Best-selling offers",
"listType": "POPULARITY",
"totalCount": 10,
"items": [
{
"item": {
"id": "8affa868-b20c-4e20-ba77-84b0679e683b",
"name": "Babysouk",
"description": "babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png",
"dominantColorCode": "#ffffff",
"externalId": "DC9",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"url": "https://www.babysouk.com/",
"tasteMatchScore": 84,
"tasteMatchScoreReason": "Because you like electronic accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "839",
"name": "Get exclusive offers on Babysouk",
"description": "Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC9&aff_sub3=839&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"multi-brand",
"online-and-in-store",
"travel-utilities",
"large-product-range",
"home-and-kitchen",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"kids-furniture",
"accessories-store",
"travel-accessories",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "12ba32e1-6757-4ab3-ad71-a00f8144c730",
"name": "Ferns N Petals",
"description": "Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg",
"dominantColorCode": "#d1b4ad",
"externalId": "DC26",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"url": "https://www.fnp.ae/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1758",
"name": "Get upto 8% cashback on Ferns N Petals",
"description": "Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"basic-service",
"international",
"chocolates",
"gifts-and-souvenirs",
"florist",
"food-beverages-and-groceries",
"dry-fruits-and-nuts",
"confectionery",
"delivery-service",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "10101386-6f01-4f71-b603-ea46c20f2eb8",
"name": "Brands For Less",
"description": "The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg",
"dominantColorCode": "#00adcb",
"externalId": "DC13",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"url": "https://www.brandsforless.ae/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "830",
"name": "Get upto 1.5% cashback on Brands For Less",
"description": "Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-11-22T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"perfumery",
"kitchen-appliances",
"automobile-and-accessories",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"online-and-in-store",
"footwear-store",
"computer-and-accessories",
"department-store",
"home-and-kitchen",
"home-furnishings",
"apparel-and-accessories",
"international",
"accessories-store",
"shopping-mall",
"mobile-phones",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dffc64f3-a8f1-4fbf-82a3-370a0c3999a7",
"name": "Amazon",
"description": "Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png",
"dominantColorCode": "#eaeceb",
"externalId": "AC8",
"image": "https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg",
"url": "https://www.amazon.sa",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13843",
"name": "Get upto 8.4AED cashback on Amazon Home Services Bounty",
"description": "Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-02-19T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC8&aff_sub3=13843&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"video-games",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"footwear-store",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"accessories-store",
"computer-and-electronics",
"clothing-store",
"travel-accessories",
"groceries",
"basic-service",
"hypermarket",
"kitchen-appliances",
"pet-supplies",
"furniture",
"sporting-equipment",
"music-store",
"computer-and-accessories",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"gifts-and-souvenirs",
"mobile-phones",
"cosmetics-and-skincare",
"books",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4248f84c-bbca-425c-b193-211ca80dff51",
"name": "Aliexpress",
"description": "Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg",
"dominantColorCode": "#ced1d8",
"externalId": "AC7",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"url": "https://ar.aliexpress.com/",
"tasteMatchScore": 74,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1357",
"name": "Get upto 9% cashback on Aliexpress",
"description": "Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"kitchen-appliances",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"sports-and-outdoors",
"department-store",
"online",
"apparel-and-accessories",
"games",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "11d00ba0-7adc-4004-bb90-f5272ed9a5db",
"name": "Fresh To Home",
"description": "Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg",
"dominantColorCode": "#feffff",
"externalId": "AC51",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"url": "https://ae.freshtohome.com",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like groceries, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1374",
"name": "Get exclusive offers on Fresh To Home",
"description": "Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "988",
"name": "Get upto 4.5AED cashback on Fresh To Home",
"description": "Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"fruits-and-vegetables-store",
"specialty-food-products",
"food-beverages-and-groceries",
"meat-products",
"online-and-in-store",
"delivery-service",
"sea-food-products",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "89531d1e-212d-42dd-a3eb-cc740cd34ebe",
"name": "Banggood",
"description": "Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC19",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png",
"url": "https://www.banggood.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1370",
"name": "Get upto 22% cashback on Banggood",
"description": "Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 22.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC19&aff_sub3=1370&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"hardware",
"stationery",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"sports-and-outdoors",
"department-store",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"apparel-and-accessories",
"international",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"personal-care",
"tools-and-home-improvement",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "42c04e94-9d07-4db2-a527-3bdbd848b62e",
"name": "Rosemary Perfumes",
"description": "The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg",
"dominantColorCode": "#becdd8",
"externalId": "DC48",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png",
"url": "https://www.rosemaryperfumes.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13838",
"name": "Get exclusive offers on Rose Mary Perfumes",
"description": "Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-02-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"perfumery",
"local",
"shopping-mall",
"health-and-beauty",
"multi-brand",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7cc55868-bf35-4a9e-904b-0807697f1f61",
"name": "Rivolishop",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD2055_Rivolishop_New_Offer.jpeg",
"dominantColorCode": "#080808",
"externalId": "AD2055",
"image": "https://media.go2speed.org/brand/files/dcm/1296/rivoli-shop-vouchers-code.png",
"url": "https://rivolishop.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "7118",
"name": "Get upto 5% discount on Rivolishop",
"description": "Get upto 5% discount on Rivolishop\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-09-08T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/rivolishop_offer.jpeg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://rivolishop.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD2055&subid2=7118&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "891c1938-90b0-4eb9-9777-1f384f53a1b4",
"name": "Tomtop",
"description": "Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD77",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"url": "http://tomtop.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "6295",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMR5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6224",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6137",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMK6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6288",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMH7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "5983",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMJ6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6045",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6307",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADML6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6285",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6076",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6239",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMI7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6233",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6252",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMP8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6217",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6145",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMS8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6260",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMF8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6271",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMVD7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6274",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMET7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"stationery",
"automobile-and-accessories",
"bicycle-and-accessories",
"health-and-beauty",
"cameras-and-accessories",
"pet-and-pet-supplies",
"multi-brand",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"online",
"kitchen-accessories",
"computer-and-electronics",
"regular-retail-store",
"basic-service",
"kitchen-appliances",
"pet-supplies",
"home-audio-and-accessories",
"sporting-equipment",
"sports-and-outdoors",
"toys",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"cosmetics-and-skincare",
"school-and-office-supplies",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.402141Z"
},
{
"id": "X2HHZsvUT5SrPoV4lYhd2Q",
"listName": "Because you are interested in fashion & toys",
"listType": "TAG_BASED",
"totalCount": 10,
"items": [
{
"item": {
"id": "12ba32e1-6757-4ab3-ad71-a00f8144c730",
"name": "Ferns N Petals",
"description": "Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg",
"dominantColorCode": "#d1b4ad",
"externalId": "DC26",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"url": "https://www.fnp.ae/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1758",
"name": "Get upto 8% cashback on Ferns N Petals",
"description": "Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"basic-service",
"international",
"chocolates",
"gifts-and-souvenirs",
"florist",
"food-beverages-and-groceries",
"dry-fruits-and-nuts",
"confectionery",
"delivery-service",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4248f84c-bbca-425c-b193-211ca80dff51",
"name": "Aliexpress",
"description": "Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg",
"dominantColorCode": "#ced1d8",
"externalId": "AC7",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"url": "https://ar.aliexpress.com/",
"tasteMatchScore": 74,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1357",
"name": "Get upto 9% cashback on Aliexpress",
"description": "Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"kitchen-appliances",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"sports-and-outdoors",
"department-store",
"online",
"apparel-and-accessories",
"games",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "11d00ba0-7adc-4004-bb90-f5272ed9a5db",
"name": "Fresh To Home",
"description": "Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg",
"dominantColorCode": "#feffff",
"externalId": "AC51",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"url": "https://ae.freshtohome.com",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like groceries, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1374",
"name": "Get exclusive offers on Fresh To Home",
"description": "Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "988",
"name": "Get upto 4.5AED cashback on Fresh To Home",
"description": "Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"fruits-and-vegetables-store",
"specialty-food-products",
"food-beverages-and-groceries",
"meat-products",
"online-and-in-store",
"delivery-service",
"sea-food-products",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "891c1938-90b0-4eb9-9777-1f384f53a1b4",
"name": "Tomtop",
"description": "Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD77",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"url": "http://tomtop.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "6295",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMR5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6224",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6137",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMK6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6288",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMH7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "5983",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMJ6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6045",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6307",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADML6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6285",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6076",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6239",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMI7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6233",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6252",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMP8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6217",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6145",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMS8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6260",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMF8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6271",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMVD7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6274",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMET7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"stationery",
"automobile-and-accessories",
"bicycle-and-accessories",
"health-and-beauty",
"cameras-and-accessories",
"pet-and-pet-supplies",
"multi-brand",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"online",
"kitchen-accessories",
"computer-and-electronics",
"regular-retail-store",
"basic-service",
"kitchen-appliances",
"pet-supplies",
"home-audio-and-accessories",
"sporting-equipment",
"sports-and-outdoors",
"toys",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"cosmetics-and-skincare",
"school-and-office-supplies",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "d67c656f-04a0-4e11-9b66-4ab180004234",
"name": "Danube Home",
"description": "Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region\u2019s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC269",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"url": "https://uae.danubehome.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like kitchen essentials, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1350",
"name": "Get exclusive offers on Danube Home",
"description": "Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-11-10T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.9,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1350&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1539",
"name": "Get upto 50% discount on Danube Home",
"description": "Get upto 50% discount on Danube Home\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/danubehome_offer.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AFYZTMC",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://uae.danubehome.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1539&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"hardware",
"kitchen-appliances",
"home-improvement-supplies",
"furniture",
"health-and-beauty",
"multi-brand",
"online-and-in-store",
"toys-and-games",
"toys",
"plant-nursery",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"international",
"apparel-and-accessories",
"kitchen-accessories",
"kids-utilities",
"gardening-supplies",
"games",
"paint-supplies",
"cosmetics-and-skincare",
"personal-care",
"tools-and-home-improvement",
"delivery-service",
"fertilizer",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dcd9f833-e362-3d15-b0c4-501f4df657d8",
"name": "Saramart",
"description": "Buy products for the best prices with free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg",
"dominantColorCode": "#909193",
"externalId": "DC49",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png",
"url": "APP ONLY",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2113",
"name": "Get upto 20% discount on Saramart",
"description": "Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SM118",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=DC49&subid2=2113&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"multi-brand",
"automobile-and-accessories",
"clothing-store",
"hardware",
"home-audio-and-accessories",
"personal-care",
"art-and-craft-supplies",
"video-games",
"stationery",
"toys",
"plant-nursery",
"toys-and-games",
"large-product-range",
"home-appliances",
"regular-retail-store",
"mobile-phones",
"cosmetics-and-skincare",
"health-and-beauty",
"international",
"art-and-craft-supplies",
"basic-service",
"school-and-office-supplies",
"fertilizer",
"kitchen-appliances",
"home-furnishings",
"kitchen-accessories",
"apparel-and-accessories",
"home-and-kitchen",
"tools-and-home-improvement",
"perfumery",
"online-and-in-store",
"computer-and-electronics",
"accessories-store",
"home-improvement-supplies",
"kids-utilities",
"gardening-supplies",
"games",
"shoes-and-accessories-store",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "ec410551-b8dd-387e-beb3-5b50b06e3125",
"name": "Sivvi",
"description": "SIVVI is the only app you need for shopping fashion in the Middle East. Find the biggest brands for the best prices, and be inspired by the latest trends and easy to shop edits for women, men and kids.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD71_1_Sivvi_New_Image.jpg",
"dominantColorCode": "#eff2f9",
"externalId": "AD71",
"image": "https://dpimages.crayondata.com/high-res-image/adib/sivvi-logo.jpg",
"url": "https://www.sivvi.com/uae-en/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "7124",
"name": "Get upto 5% discount on Sivvi",
"description": "Get upto 5% discount on Sivvi\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-09-27T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/sivvi1%20Offer.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://www.sivvi.com/uae-en/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD71&subid2=7124&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"gifts-and-souvenirs",
"perfumery",
"home-furnishings",
"regular-retail-store",
"delivery-service",
"personal-care",
"cosmetics-and-skincare",
"health-and-beauty",
"apparel-and-accessories",
"home-and-kitchen",
"kitchen-accessories",
"large-product-range",
"gifts-and-souvenirs",
"shoes-and-accessories-store",
"basic-service",
"apparel-and-accessories",
"other-products",
"multi-brand",
"online"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "49629e58-8fe0-3bf2-8e19-882a4ee3176e",
"name": "Tryano",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/BO4843_1_Tryano_New_Image.jpg",
"dominantColorCode": "#f1f1f1",
"externalId": "BO4843",
"image": "https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg",
"url": "https://www.tryano.com/en-ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "6332",
"name": "Get exclusive offers on Tryano",
"description": "Get exclusive offers on Tryano\n1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-04-13T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=974&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=BO4843&aff_sub3=6332&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"clothing-store",
"accessories-store",
"regular-retail-store",
"basic-service",
"large-product-range",
"premium",
"online-and-in-store",
"local"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7eb58a5a-9110-49cd-9e41-d15bc99439c2",
"name": "Mothercare",
"description": "The Mothercare brand is synonymous with children and parenting. it carries with it a reputation for specialism, quality, safety and innovation in providing products and services for mothers, mothers-to-be, babies and young children",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC86_1_Mothercare_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC86",
"image": "https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg",
"url": "https://www.mothercare.ae/en/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "892",
"name": "Get upto 10% cashback on Mothercare",
"description": "Get upto 10% cashback on Mothercare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=403&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC86&aff_sub3=892&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"basic-service",
"apparel-and-accessories",
"kids-utilities",
"standalone-store",
"clothing-store",
"online-and-in-store",
"toys-and-games",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "55e97f4d-2f76-4ba1-b417-27d0fece9199",
"name": "Blackshark",
"description": "Black Shark is a cutting-edge gaming technology company developing a 360 degree gaming eco-system based on hardware, software and service. This is currently carried out by our flagship gaming smartphones. Ultimately we aim to provide an unmatched gaming experience to our international fanbase and to create the best gaming world with global gamers.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD10_1_Blackshark_New_Image.jpg",
"dominantColorCode": "#FCFFE0",
"externalId": "AD10",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png",
"url": "http://global.blackshark.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "4784",
"name": "Get upto 2% cashback on Blackshark",
"description": "Get upto 2% cashback on Blackshark\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-01T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ad.admitad.com/g/8wvyx9bxy9d193180536480c2cdbcd/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD10&subid2=4784&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"video-games",
"single-brand",
"international",
"mobile-phones",
"computer-and-electronics",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.402558Z"
},
{
"id": "D_olc69wQvi300PZpl-GKw",
"listName": "What\u2019s new in toys, games & fashion",
"listType": "DISCOVERY",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.402793Z"
},
{
"id": "XH2E3pTtTtijw96a-wEX1Q",
"listName": "Your favorites",
"listType": "REPEAT",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.402986Z"
},
{
"id": "5VD-0-4bQMmYE-oGkNZ-Uw",
"listName": "Crème de la crème",
"listType": "CROSS_CATEGORY",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.403209Z"
},
{
"id": "S81i6fPWSJ-yDdo3pjzXOw",
"listName": "Season of love",
"listType": "202107",
"totalCount": 2,
"items": [
{
"item": {
"id": "42c04e94-9d07-4db2-a527-3bdbd848b62e",
"name": "Rosemary Perfumes",
"description": "The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg",
"dominantColorCode": "#becdd8",
"externalId": "DC48",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png",
"url": "https://www.rosemaryperfumes.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13838",
"name": "Get exclusive offers on Rose Mary Perfumes",
"description": "Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-02-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"perfumery",
"local",
"shopping-mall",
"health-and-beauty",
"multi-brand",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "07fa5146-8150-42a8-a89a-227304309fe2",
"name": "Ubuy",
"description": "Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount",
"category": "retail stores",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC150",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg",
"url": "https://www.ubuy.com",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like musical instruments, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "890",
"name": "Get exclusive offers on Ubuy",
"description": "Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "",
"cashbackValue": 2.5,
"offerStatus": "active",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=890&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
},
{
"id": "1754",
"name": "Get upto 10% discount on Ubuy using",
"description": "Get upto 10% discount on Ubuy using\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-27T00:00:00.389Z",
"validTo": "2023-02-12T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "uban242",
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "",
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1754&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"claimed": false,
"redeemed": false
}
},
{
"id": "1341",
"name": "Get exclusive offers on Ubuy",
"description": "Get exclusive offers on Ubuy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "",
"cashbackValue": 5.0,
"offerStatus": "active",
"url": "https://go.arabclicks.com/aff_c?offer_id=939&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1341&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
},
{
"id": "1909",
"name": "Get upto 10% discount on Ubuy",
"description": "Get upto 10% discount on Ubuy\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-27T00:00:00.389Z",
"validTo": "2023-02-12T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "uban230",
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "",
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1909&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"perfumery",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"cameras-and-accessories",
"multi-brand",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"international",
"kids-utilities",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"computer-and-electronics",
"travel-accessories",
"groceries",
"regular-retail-store",
"basic-service",
"home-improvement-supplies",
"pet-supplies",
"furniture",
"home-audio-and-accessories",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"books",
"musical-instrument",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.40333Z"
}
]
}
Scenario: [12.1:189]
To validate the response for category choices list and Validate the merchants are not repeated for more than 2 times
ms: 1967
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:04.794 karate.env system property was: null
20:57:04.794 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
179
Given headers req_headers
0
180
And url baseUrl
0
181
And path choiceApiUrl
1
182
And request {category:retail stores, choiceCount:10, lang:en,city:dubai,includeCampaigns:true,servedAt:2022-04-06T23:59:59.000+00:00, times:2 }
0
183
When method Post
1908
20:57:04.800 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/choice/list
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 149
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"category":"retail stores","choiceCount":10,"lang":"en","city":"dubai","includeCampaigns":true,"servedAt":"2022-04-06T23:59:59.000+00:00","times":2}
20:57:06.695 response time in milliseconds: 1842
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:05 GMT
{"id":"fVchdLdmTgGkL-Td1JTCXw","choices":[{"id":"QUXBI8sjQwi82YYNVn-CLw","listName":"Selected just for you","listType":"NEXT_BEST","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.473527Z"},{"id":"hvH4kijJTiafIPAsGt6xHA","listName":"Deals of the day","listType":"TRENDING","totalCount":9,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"3d541c25-6df9-4fd4-b5ce-8061a12abe67","name":"Ounass","description":"Many luxury fashion designers in the Middle East","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg","dominantColorCode":"#d5d5d7","externalId":"AC105","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","url":"https://www.ounass.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like electronic accessories, you might like this too","distance":0.0},"offers":[{"id":"1362","name":"Get upto 6% cashback on Ounass","description":"Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1362&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1843","name":"Get upto 5% discount on Ounass","description":"Get upto 5% discount on Ounass\n1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-06-24T00:00:00.389Z","validTo":"2023-09-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"aco67","termsAndConditions":"1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://ar.ounass.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1843&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1361","name":"Get exclusive offers on Ounass","description":"Get exclusive offers on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=194&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1361&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","home-and-kitchen","home-furnishings","shoes-and-accessories-store","apparel-and-accessories","gifts-and-souvenirs","furniture","accessories-store","health-and-beauty","multi-brand","standalone-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4a28a630-e64f-4287-9713-47b46450cb38","name":"Toys R Us","description":"Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don’t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We’re always growing and we’ll have more stores and online stores opening in the region soon – we can’t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC55","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","url":"https://www.toysrusmena.com/en-AE/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too","distance":0.0},"offers":[{"id":"842","name":"Get exclusive offers on Toys R Us","description":"Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC55&aff_sub3=842&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","video-games","party-supplies","bicycle-and-accessories","art-and-craft-supplies","multi-brand","costumes","sporting-equipment","online-and-in-store","toys-and-games","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","kids-utilities","games","international","shopping-mall","computer-and-electronics","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"58ab63ee-12e3-4d54-a9cc-3ea7619a8221","name":"Soukare","description":"souKare is one of the largest online stores for colored contact lenses.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg","dominantColorCode":"#e5f2fb","externalId":"AC124","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","url":"https://soukare.com/ar-sa/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"1389","name":"Get upto 5% cashback on Soukare","description":"Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC124&aff_sub3=1389&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","perfumery","health-and-beauty","multi-brand","standalone-store","personal-care","online-and-in-store","nutritional-supplements","pharmacy","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.473818Z"},{"id":"lVhUBZ3SSXeLXXNYofwZrA","listName":"Best-selling offers","listType":"POPULARITY","totalCount":10,"items":[{"item":{"id":"8affa868-b20c-4e20-ba77-84b0679e683b","name":"Babysouk","description":"babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png","dominantColorCode":"#ffffff","externalId":"DC9","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","url":"https://www.babysouk.com/","tasteMatchScore":84,"tasteMatchScoreReason":"Because you like electronic accessories, you might like this too","distance":0.0},"offers":[{"id":"839","name":"Get exclusive offers on Babysouk","description":"Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC9&aff_sub3=839&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","multi-brand","online-and-in-store","travel-utilities","large-product-range","home-and-kitchen","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","kids-furniture","accessories-store","travel-accessories","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"12ba32e1-6757-4ab3-ad71-a00f8144c730","name":"Ferns N Petals","description":"Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg","dominantColorCode":"#d1b4ad","externalId":"DC26","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","url":"https://www.fnp.ae/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"1758","name":"Get upto 8% cashback on Ferns N Petals","description":"Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","online","basic-service","international","chocolates","gifts-and-souvenirs","florist","food-beverages-and-groceries","dry-fruits-and-nuts","confectionery","delivery-service","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"10101386-6f01-4f71-b603-ea46c20f2eb8","name":"Brands For Less","description":"The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg","dominantColorCode":"#00adcb","externalId":"DC13","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","url":"https://www.brandsforless.ae/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"830","name":"Get upto 1.5% cashback on Brands For Less","description":"Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-11-22T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["perfumery","kitchen-appliances","automobile-and-accessories","pet-supplies","health-and-beauty","pet-and-pet-supplies","online-and-in-store","footwear-store","computer-and-accessories","department-store","home-and-kitchen","home-furnishings","apparel-and-accessories","international","accessories-store","shopping-mall","mobile-phones","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dffc64f3-a8f1-4fbf-82a3-370a0c3999a7","name":"Amazon","description":"Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png","dominantColorCode":"#eaeceb","externalId":"AC8","image":"https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg","url":"https://www.amazon.sa","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"13843","name":"Get upto 8.4AED cashback on Amazon Home Services Bounty","description":"Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-02-19T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC8&aff_sub3=13843&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["video-games","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","multi-brand","footwear-store","toys-and-games","home-appliances","home-and-kitchen","home-furnishings","online","kitchen-accessories","luggage-store","books-and-music","accessories-store","computer-and-electronics","clothing-store","travel-accessories","groceries","basic-service","hypermarket","kitchen-appliances","pet-supplies","furniture","sporting-equipment","music-store","computer-and-accessories","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","gifts-and-souvenirs","mobile-phones","cosmetics-and-skincare","books","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4248f84c-bbca-425c-b193-211ca80dff51","name":"Aliexpress","description":"Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg","dominantColorCode":"#ced1d8","externalId":"AC7","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","url":"https://ar.aliexpress.com/","tasteMatchScore":74,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1357","name":"Get upto 9% cashback on Aliexpress","description":"Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["kitchen-appliances","pet-and-pet-supplies","multi-brand","sporting-equipment","toys-and-games","sports-and-outdoors","department-store","online","apparel-and-accessories","games","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"11d00ba0-7adc-4004-bb90-f5272ed9a5db","name":"Fresh To Home","description":"Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg","dominantColorCode":"#feffff","externalId":"AC51","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","url":"https://ae.freshtohome.com","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like groceries, you might like this too","distance":0.0},"offers":[{"id":"1374","name":"Get exclusive offers on Fresh To Home","description":"Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"988","name":"Get upto 4.5AED cashback on Fresh To Home","description":"Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","fruits-and-vegetables-store","specialty-food-products","food-beverages-and-groceries","meat-products","online-and-in-store","delivery-service","sea-food-products","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"89531d1e-212d-42dd-a3eb-cc740cd34ebe","name":"Banggood","description":"Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC19","image":"http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png","url":"https://www.banggood.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1370","name":"Get upto 22% cashback on Banggood","description":"Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":22.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC19&aff_sub3=1370&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["hardware","stationery","pet-supplies","health-and-beauty","pet-and-pet-supplies","multi-brand","sporting-equipment","sports-and-outdoors","department-store","home-appliances","home-and-kitchen","home-furnishings","online","apparel-and-accessories","international","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","personal-care","tools-and-home-improvement","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"42c04e94-9d07-4db2-a527-3bdbd848b62e","name":"Rosemary Perfumes","description":"The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg","dominantColorCode":"#becdd8","externalId":"DC48","image":"https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png","url":"https://www.rosemaryperfumes.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"13838","name":"Get exclusive offers on Rose Mary Perfumes","description":"Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-02-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","perfumery","local","shopping-mall","health-and-beauty","multi-brand","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7cc55868-bf35-4a9e-904b-0807697f1f61","name":"Rivolishop","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD2055_Rivolishop_New_Offer.jpeg","dominantColorCode":"#080808","externalId":"AD2055","image":"https://media.go2speed.org/brand/files/dcm/1296/rivoli-shop-vouchers-code.png","url":"https://rivolishop.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"7118","name":"Get upto 5% discount on Rivolishop","description":"Get upto 5% discount on Rivolishop\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-09-08T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/rivolishop_offer.jpeg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://rivolishop.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD2055&subid2=7118&subid3=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"891c1938-90b0-4eb9-9777-1f384f53a1b4","name":"Tomtop","description":"Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD77","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","url":"http://tomtop.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too","distance":0.0},"offers":[{"id":"6295","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMR5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6224","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6137","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMK6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6288","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMH7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon","claimed":false,"redeemed":false}},{"id":"5983","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMJ6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6045","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6307","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADML6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6285","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6076","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6239","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMI7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6233","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6252","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMP8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6217","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6145","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMS8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6260","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMF8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6271","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMVD7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6274","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMET7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["stationery","automobile-and-accessories","bicycle-and-accessories","health-and-beauty","cameras-and-accessories","pet-and-pet-supplies","multi-brand","toys-and-games","home-appliances","home-and-kitchen","online","kitchen-accessories","computer-and-electronics","regular-retail-store","basic-service","kitchen-appliances","pet-supplies","home-audio-and-accessories","sporting-equipment","sports-and-outdoors","toys","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","cosmetics-and-skincare","school-and-office-supplies","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.474253Z"},{"id":"CzMnojrQRk6zBTvhmn_RUw","listName":"Because you are interested in fashion & toys","listType":"TAG_BASED","totalCount":10,"items":[{"item":{"id":"12ba32e1-6757-4ab3-ad71-a00f8144c730","name":"Ferns N Petals","description":"Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg","dominantColorCode":"#d1b4ad","externalId":"DC26","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","url":"https://www.fnp.ae/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"1758","name":"Get upto 8% cashback on Ferns N Petals","description":"Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","online","basic-service","international","chocolates","gifts-and-souvenirs","florist","food-beverages-and-groceries","dry-fruits-and-nuts","confectionery","delivery-service","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4248f84c-bbca-425c-b193-211ca80dff51","name":"Aliexpress","description":"Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg","dominantColorCode":"#ced1d8","externalId":"AC7","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","url":"https://ar.aliexpress.com/","tasteMatchScore":74,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1357","name":"Get upto 9% cashback on Aliexpress","description":"Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["kitchen-appliances","pet-and-pet-supplies","multi-brand","sporting-equipment","toys-and-games","sports-and-outdoors","department-store","online","apparel-and-accessories","games","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"11d00ba0-7adc-4004-bb90-f5272ed9a5db","name":"Fresh To Home","description":"Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg","dominantColorCode":"#feffff","externalId":"AC51","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","url":"https://ae.freshtohome.com","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like groceries, you might like this too","distance":0.0},"offers":[{"id":"1374","name":"Get exclusive offers on Fresh To Home","description":"Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"988","name":"Get upto 4.5AED cashback on Fresh To Home","description":"Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","fruits-and-vegetables-store","specialty-food-products","food-beverages-and-groceries","meat-products","online-and-in-store","delivery-service","sea-food-products","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"891c1938-90b0-4eb9-9777-1f384f53a1b4","name":"Tomtop","description":"Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD77","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","url":"http://tomtop.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too","distance":0.0},"offers":[{"id":"6295","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMR5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6224","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6137","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMK6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6288","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMH7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon","claimed":false,"redeemed":false}},{"id":"5983","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMJ6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6045","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6307","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADML6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6285","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6076","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6239","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMI7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6233","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6252","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMP8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6217","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6145","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMS8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6260","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMF8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6271","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMVD7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6274","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMET7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["stationery","automobile-and-accessories","bicycle-and-accessories","health-and-beauty","cameras-and-accessories","pet-and-pet-supplies","multi-brand","toys-and-games","home-appliances","home-and-kitchen","online","kitchen-accessories","computer-and-electronics","regular-retail-store","basic-service","kitchen-appliances","pet-supplies","home-audio-and-accessories","sporting-equipment","sports-and-outdoors","toys","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","cosmetics-and-skincare","school-and-office-supplies","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"d67c656f-04a0-4e11-9b66-4ab180004234","name":"Danube Home","description":"Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region’s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC269","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","url":"https://uae.danubehome.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like kitchen essentials, you might like this too","distance":0.0},"offers":[{"id":"1350","name":"Get exclusive offers on Danube Home","description":"Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-11-10T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.9,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1350&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1539","name":"Get upto 50% discount on Danube Home","description":"Get upto 50% discount on Danube Home\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/danubehome_offer.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"AFYZTMC","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://uae.danubehome.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1539&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","hardware","kitchen-appliances","home-improvement-supplies","furniture","health-and-beauty","multi-brand","online-and-in-store","toys-and-games","toys","plant-nursery","large-product-range","home-furnishings","home-and-kitchen","international","apparel-and-accessories","kitchen-accessories","kids-utilities","gardening-supplies","games","paint-supplies","cosmetics-and-skincare","personal-care","tools-and-home-improvement","delivery-service","fertilizer","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dcd9f833-e362-3d15-b0c4-501f4df657d8","name":"Saramart","description":"Buy products for the best prices with free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg","dominantColorCode":"#909193","externalId":"DC49","image":"https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png","url":"APP ONLY","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2113","name":"Get upto 20% discount on Saramart","description":"Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"SM118","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=DC49&subid2=2113&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["multi-brand","automobile-and-accessories","clothing-store","hardware","home-audio-and-accessories","personal-care","art-and-craft-supplies","video-games","stationery","toys","plant-nursery","toys-and-games","large-product-range","home-appliances","regular-retail-store","mobile-phones","cosmetics-and-skincare","health-and-beauty","international","art-and-craft-supplies","basic-service","school-and-office-supplies","fertilizer","kitchen-appliances","home-furnishings","kitchen-accessories","apparel-and-accessories","home-and-kitchen","tools-and-home-improvement","perfumery","online-and-in-store","computer-and-electronics","accessories-store","home-improvement-supplies","kids-utilities","gardening-supplies","games","shoes-and-accessories-store","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"ec410551-b8dd-387e-beb3-5b50b06e3125","name":"Sivvi","description":"SIVVI is the only app you need for shopping fashion in the Middle East. Find the biggest brands for the best prices, and be inspired by the latest trends and easy to shop edits for women, men and kids.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD71_1_Sivvi_New_Image.jpg","dominantColorCode":"#eff2f9","externalId":"AD71","image":"https://dpimages.crayondata.com/high-res-image/adib/sivvi-logo.jpg","url":"https://www.sivvi.com/uae-en/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"7124","name":"Get upto 5% discount on Sivvi","description":"Get upto 5% discount on Sivvi\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-09-27T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/sivvi1%20Offer.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://www.sivvi.com/uae-en/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD71&subid2=7124&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["gifts-and-souvenirs","perfumery","home-furnishings","regular-retail-store","delivery-service","personal-care","cosmetics-and-skincare","health-and-beauty","apparel-and-accessories","home-and-kitchen","kitchen-accessories","large-product-range","gifts-and-souvenirs","shoes-and-accessories-store","basic-service","apparel-and-accessories","other-products","multi-brand","online"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"49629e58-8fe0-3bf2-8e19-882a4ee3176e","name":"Tryano","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/BO4843_1_Tryano_New_Image.jpg","dominantColorCode":"#f1f1f1","externalId":"BO4843","image":"https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg","url":"https://www.tryano.com/en-ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"6332","name":"Get exclusive offers on Tryano","description":"Get exclusive offers on Tryano\n1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-04-13T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=974&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=BO4843&aff_sub3=6332&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["clothing-store","accessories-store","regular-retail-store","basic-service","large-product-range","premium","online-and-in-store","local"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7eb58a5a-9110-49cd-9e41-d15bc99439c2","name":"Mothercare","description":"The Mothercare brand is synonymous with children and parenting. it carries with it a reputation for specialism, quality, safety and innovation in providing products and services for mothers, mothers-to-be, babies and young children","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC86_1_Mothercare_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC86","image":"https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg","url":"https://www.mothercare.ae/en/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"892","name":"Get upto 10% cashback on Mothercare","description":"Get upto 10% cashback on Mothercare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=403&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC86&aff_sub3=892&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","basic-service","apparel-and-accessories","kids-utilities","standalone-store","clothing-store","online-and-in-store","toys-and-games","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"55e97f4d-2f76-4ba1-b417-27d0fece9199","name":"Blackshark","description":"Black Shark is a cutting-edge gaming technology company developing a 360 degree gaming eco-system based on hardware, software and service. This is currently carried out by our flagship gaming smartphones. Ultimately we aim to provide an unmatched gaming experience to our international fanbase and to create the best gaming world with global gamers.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD10_1_Blackshark_New_Image.jpg","dominantColorCode":"#FCFFE0","externalId":"AD10","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png","url":"http://global.blackshark.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"4784","name":"Get upto 2% cashback on Blackshark","description":"Get upto 2% cashback on Blackshark\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-01T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://ad.admitad.com/g/8wvyx9bxy9d193180536480c2cdbcd/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD10&subid2=4784&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","video-games","single-brand","international","mobile-phones","computer-and-electronics","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.474612Z"},{"id":"fPf5EcPHRc6QyK-4s9QvCQ","listName":"What’s new in toys, games & fashion","listType":"DISCOVERY","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.474824Z"},{"id":"wAZnR_XBQqO9_re652YRmg","listName":"Your favorites","listType":"REPEAT","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.47506Z"},{"id":"etB2Adp6RqumNsxdgkBcqg","listName":"Crème de la crème","listType":"CROSS_CATEGORY","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.475259Z"},{"id":"jp17NMZ2Teu-N6RjppeSCA","listName":"Season of love","listType":"202107","totalCount":2,"items":[{"item":{"id":"42c04e94-9d07-4db2-a527-3bdbd848b62e","name":"Rosemary Perfumes","description":"The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg","dominantColorCode":"#becdd8","externalId":"DC48","image":"https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png","url":"https://www.rosemaryperfumes.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"13838","name":"Get exclusive offers on Rose Mary Perfumes","description":"Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-02-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","perfumery","local","shopping-mall","health-and-beauty","multi-brand","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"07fa5146-8150-42a8-a89a-227304309fe2","name":"Ubuy","description":"Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount","category":"retail stores","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg","dominantColorCode":"#ffffff","externalId":"AC150","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg","url":"https://www.ubuy.com","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like musical instruments, you might like this too","distance":0.0},"offers":[{"id":"890","name":"Get exclusive offers on Ubuy","description":"Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"","cashbackValue":2.5,"offerStatus":"active","url":"https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=890&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}},{"id":"1754","name":"Get upto 10% discount on Ubuy using","description":"Get upto 10% discount on Ubuy using\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-27T00:00:00.389Z","validTo":"2023-02-12T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"uban242","image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"offline coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"","cashbackValue":0.0,"offerStatus":"active","url":"https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1754&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","claimed":false,"redeemed":false}},{"id":"1341","name":"Get exclusive offers on Ubuy","description":"Get exclusive offers on Ubuy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"","cashbackValue":5.0,"offerStatus":"active","url":"https://go.arabclicks.com/aff_c?offer_id=939&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1341&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}},{"id":"1909","name":"Get upto 10% discount on Ubuy","description":"Get upto 10% discount on Ubuy\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-27T00:00:00.389Z","validTo":"2023-02-12T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"uban230","image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"offline coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"","cashbackValue":0.0,"offerStatus":"active","url":"https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1909&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","claimed":false,"redeemed":false}}],"tags":["perfumery","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","cameras-and-accessories","multi-brand","home-appliances","home-and-kitchen","home-furnishings","online","international","kids-utilities","kitchen-accessories","luggage-store","books-and-music","computer-and-electronics","travel-accessories","groceries","regular-retail-store","basic-service","home-improvement-supplies","pet-supplies","furniture","home-audio-and-accessories","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","books","musical-instrument","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.475386Z"}]}
184
Then status 200
0
185
Then print response
57
20:57:06.765 [print] {
"id": "fVchdLdmTgGkL-Td1JTCXw",
"choices": [
{
"id": "QUXBI8sjQwi82YYNVn-CLw",
"listName": "Selected just for you",
"listType": "NEXT_BEST",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.473527Z"
},
{
"id": "hvH4kijJTiafIPAsGt6xHA",
"listName": "Deals of the day",
"listType": "TRENDING",
"totalCount": 9,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "3d541c25-6df9-4fd4-b5ce-8061a12abe67",
"name": "Ounass",
"description": "Many luxury fashion designers in the Middle East",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg",
"dominantColorCode": "#d5d5d7",
"externalId": "AC105",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"url": "https://www.ounass.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like electronic accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1362",
"name": "Get upto 6% cashback on Ounass",
"description": "Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1362&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1843",
"name": "Get upto 5% discount on Ounass",
"description": "Get upto 5% discount on Ounass\n1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-06-24T00:00:00.389Z",
"validTo": "2023-09-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "aco67",
"termsAndConditions": "1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ar.ounass.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1843&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1361",
"name": "Get exclusive offers on Ounass",
"description": "Get exclusive offers on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=194&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1361&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"home-furnishings",
"shoes-and-accessories-store",
"apparel-and-accessories",
"gifts-and-souvenirs",
"furniture",
"accessories-store",
"health-and-beauty",
"multi-brand",
"standalone-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4a28a630-e64f-4287-9713-47b46450cb38",
"name": "Toys R Us",
"description": "Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don\u2019t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We\u2019re always growing and we\u2019ll have more stores and online stores opening in the region soon \u2013 we can\u2019t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC55",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"url": "https://www.toysrusmena.com/en-AE/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "842",
"name": "Get exclusive offers on Toys R Us",
"description": "Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC55&aff_sub3=842&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"video-games",
"party-supplies",
"bicycle-and-accessories",
"art-and-craft-supplies",
"multi-brand",
"costumes",
"sporting-equipment",
"online-and-in-store",
"toys-and-games",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"kids-utilities",
"games",
"international",
"shopping-mall",
"computer-and-electronics",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "58ab63ee-12e3-4d54-a9cc-3ea7619a8221",
"name": "Soukare",
"description": "souKare is one of the largest online stores for colored contact lenses.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg",
"dominantColorCode": "#e5f2fb",
"externalId": "AC124",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"url": "https://soukare.com/ar-sa/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1389",
"name": "Get upto 5% cashback on Soukare",
"description": "Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC124&aff_sub3=1389&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"perfumery",
"health-and-beauty",
"multi-brand",
"standalone-store",
"personal-care",
"online-and-in-store",
"nutritional-supplements",
"pharmacy",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.473818Z"
},
{
"id": "lVhUBZ3SSXeLXXNYofwZrA",
"listName": "Best-selling offers",
"listType": "POPULARITY",
"totalCount": 10,
"items": [
{
"item": {
"id": "8affa868-b20c-4e20-ba77-84b0679e683b",
"name": "Babysouk",
"description": "babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png",
"dominantColorCode": "#ffffff",
"externalId": "DC9",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"url": "https://www.babysouk.com/",
"tasteMatchScore": 84,
"tasteMatchScoreReason": "Because you like electronic accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "839",
"name": "Get exclusive offers on Babysouk",
"description": "Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC9&aff_sub3=839&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"multi-brand",
"online-and-in-store",
"travel-utilities",
"large-product-range",
"home-and-kitchen",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"kids-furniture",
"accessories-store",
"travel-accessories",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "12ba32e1-6757-4ab3-ad71-a00f8144c730",
"name": "Ferns N Petals",
"description": "Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg",
"dominantColorCode": "#d1b4ad",
"externalId": "DC26",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"url": "https://www.fnp.ae/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1758",
"name": "Get upto 8% cashback on Ferns N Petals",
"description": "Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"basic-service",
"international",
"chocolates",
"gifts-and-souvenirs",
"florist",
"food-beverages-and-groceries",
"dry-fruits-and-nuts",
"confectionery",
"delivery-service",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "10101386-6f01-4f71-b603-ea46c20f2eb8",
"name": "Brands For Less",
"description": "The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg",
"dominantColorCode": "#00adcb",
"externalId": "DC13",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"url": "https://www.brandsforless.ae/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "830",
"name": "Get upto 1.5% cashback on Brands For Less",
"description": "Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-11-22T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"perfumery",
"kitchen-appliances",
"automobile-and-accessories",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"online-and-in-store",
"footwear-store",
"computer-and-accessories",
"department-store",
"home-and-kitchen",
"home-furnishings",
"apparel-and-accessories",
"international",
"accessories-store",
"shopping-mall",
"mobile-phones",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dffc64f3-a8f1-4fbf-82a3-370a0c3999a7",
"name": "Amazon",
"description": "Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png",
"dominantColorCode": "#eaeceb",
"externalId": "AC8",
"image": "https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg",
"url": "https://www.amazon.sa",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13843",
"name": "Get upto 8.4AED cashback on Amazon Home Services Bounty",
"description": "Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-02-19T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC8&aff_sub3=13843&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"video-games",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"footwear-store",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"accessories-store",
"computer-and-electronics",
"clothing-store",
"travel-accessories",
"groceries",
"basic-service",
"hypermarket",
"kitchen-appliances",
"pet-supplies",
"furniture",
"sporting-equipment",
"music-store",
"computer-and-accessories",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"gifts-and-souvenirs",
"mobile-phones",
"cosmetics-and-skincare",
"books",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4248f84c-bbca-425c-b193-211ca80dff51",
"name": "Aliexpress",
"description": "Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg",
"dominantColorCode": "#ced1d8",
"externalId": "AC7",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"url": "https://ar.aliexpress.com/",
"tasteMatchScore": 74,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1357",
"name": "Get upto 9% cashback on Aliexpress",
"description": "Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"kitchen-appliances",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"sports-and-outdoors",
"department-store",
"online",
"apparel-and-accessories",
"games",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "11d00ba0-7adc-4004-bb90-f5272ed9a5db",
"name": "Fresh To Home",
"description": "Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg",
"dominantColorCode": "#feffff",
"externalId": "AC51",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"url": "https://ae.freshtohome.com",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like groceries, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1374",
"name": "Get exclusive offers on Fresh To Home",
"description": "Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "988",
"name": "Get upto 4.5AED cashback on Fresh To Home",
"description": "Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"fruits-and-vegetables-store",
"specialty-food-products",
"food-beverages-and-groceries",
"meat-products",
"online-and-in-store",
"delivery-service",
"sea-food-products",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "89531d1e-212d-42dd-a3eb-cc740cd34ebe",
"name": "Banggood",
"description": "Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC19",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png",
"url": "https://www.banggood.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1370",
"name": "Get upto 22% cashback on Banggood",
"description": "Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 22.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC19&aff_sub3=1370&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"hardware",
"stationery",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"sports-and-outdoors",
"department-store",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"apparel-and-accessories",
"international",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"personal-care",
"tools-and-home-improvement",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "42c04e94-9d07-4db2-a527-3bdbd848b62e",
"name": "Rosemary Perfumes",
"description": "The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg",
"dominantColorCode": "#becdd8",
"externalId": "DC48",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png",
"url": "https://www.rosemaryperfumes.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13838",
"name": "Get exclusive offers on Rose Mary Perfumes",
"description": "Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-02-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"perfumery",
"local",
"shopping-mall",
"health-and-beauty",
"multi-brand",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7cc55868-bf35-4a9e-904b-0807697f1f61",
"name": "Rivolishop",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD2055_Rivolishop_New_Offer.jpeg",
"dominantColorCode": "#080808",
"externalId": "AD2055",
"image": "https://media.go2speed.org/brand/files/dcm/1296/rivoli-shop-vouchers-code.png",
"url": "https://rivolishop.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "7118",
"name": "Get upto 5% discount on Rivolishop",
"description": "Get upto 5% discount on Rivolishop\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-09-08T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/rivolishop_offer.jpeg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://rivolishop.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD2055&subid2=7118&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "891c1938-90b0-4eb9-9777-1f384f53a1b4",
"name": "Tomtop",
"description": "Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD77",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"url": "http://tomtop.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "6295",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMR5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6224",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6137",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMK6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6288",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMH7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "5983",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMJ6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6045",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6307",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADML6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6285",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6076",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6239",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMI7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6233",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6252",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMP8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6217",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6145",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMS8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6260",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMF8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6271",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMVD7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6274",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMET7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"stationery",
"automobile-and-accessories",
"bicycle-and-accessories",
"health-and-beauty",
"cameras-and-accessories",
"pet-and-pet-supplies",
"multi-brand",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"online",
"kitchen-accessories",
"computer-and-electronics",
"regular-retail-store",
"basic-service",
"kitchen-appliances",
"pet-supplies",
"home-audio-and-accessories",
"sporting-equipment",
"sports-and-outdoors",
"toys",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"cosmetics-and-skincare",
"school-and-office-supplies",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.474253Z"
},
{
"id": "CzMnojrQRk6zBTvhmn_RUw",
"listName": "Because you are interested in fashion & toys",
"listType": "TAG_BASED",
"totalCount": 10,
"items": [
{
"item": {
"id": "12ba32e1-6757-4ab3-ad71-a00f8144c730",
"name": "Ferns N Petals",
"description": "Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg",
"dominantColorCode": "#d1b4ad",
"externalId": "DC26",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"url": "https://www.fnp.ae/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1758",
"name": "Get upto 8% cashback on Ferns N Petals",
"description": "Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"basic-service",
"international",
"chocolates",
"gifts-and-souvenirs",
"florist",
"food-beverages-and-groceries",
"dry-fruits-and-nuts",
"confectionery",
"delivery-service",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4248f84c-bbca-425c-b193-211ca80dff51",
"name": "Aliexpress",
"description": "Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg",
"dominantColorCode": "#ced1d8",
"externalId": "AC7",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"url": "https://ar.aliexpress.com/",
"tasteMatchScore": 74,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1357",
"name": "Get upto 9% cashback on Aliexpress",
"description": "Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"kitchen-appliances",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"sports-and-outdoors",
"department-store",
"online",
"apparel-and-accessories",
"games",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "11d00ba0-7adc-4004-bb90-f5272ed9a5db",
"name": "Fresh To Home",
"description": "Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg",
"dominantColorCode": "#feffff",
"externalId": "AC51",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"url": "https://ae.freshtohome.com",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like groceries, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1374",
"name": "Get exclusive offers on Fresh To Home",
"description": "Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "988",
"name": "Get upto 4.5AED cashback on Fresh To Home",
"description": "Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"fruits-and-vegetables-store",
"specialty-food-products",
"food-beverages-and-groceries",
"meat-products",
"online-and-in-store",
"delivery-service",
"sea-food-products",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "891c1938-90b0-4eb9-9777-1f384f53a1b4",
"name": "Tomtop",
"description": "Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD77",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"url": "http://tomtop.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "6295",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMR5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6224",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6137",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMK6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6288",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMH7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "5983",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMJ6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6045",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6307",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADML6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6285",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6076",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6239",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMI7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6233",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6252",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMP8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6217",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6145",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMS8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6260",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMF8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6271",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMVD7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6274",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMET7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"stationery",
"automobile-and-accessories",
"bicycle-and-accessories",
"health-and-beauty",
"cameras-and-accessories",
"pet-and-pet-supplies",
"multi-brand",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"online",
"kitchen-accessories",
"computer-and-electronics",
"regular-retail-store",
"basic-service",
"kitchen-appliances",
"pet-supplies",
"home-audio-and-accessories",
"sporting-equipment",
"sports-and-outdoors",
"toys",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"cosmetics-and-skincare",
"school-and-office-supplies",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "d67c656f-04a0-4e11-9b66-4ab180004234",
"name": "Danube Home",
"description": "Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region\u2019s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC269",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"url": "https://uae.danubehome.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like kitchen essentials, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1350",
"name": "Get exclusive offers on Danube Home",
"description": "Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-11-10T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.9,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1350&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1539",
"name": "Get upto 50% discount on Danube Home",
"description": "Get upto 50% discount on Danube Home\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/danubehome_offer.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AFYZTMC",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://uae.danubehome.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1539&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"hardware",
"kitchen-appliances",
"home-improvement-supplies",
"furniture",
"health-and-beauty",
"multi-brand",
"online-and-in-store",
"toys-and-games",
"toys",
"plant-nursery",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"international",
"apparel-and-accessories",
"kitchen-accessories",
"kids-utilities",
"gardening-supplies",
"games",
"paint-supplies",
"cosmetics-and-skincare",
"personal-care",
"tools-and-home-improvement",
"delivery-service",
"fertilizer",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dcd9f833-e362-3d15-b0c4-501f4df657d8",
"name": "Saramart",
"description": "Buy products for the best prices with free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg",
"dominantColorCode": "#909193",
"externalId": "DC49",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png",
"url": "APP ONLY",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2113",
"name": "Get upto 20% discount on Saramart",
"description": "Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SM118",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=DC49&subid2=2113&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"multi-brand",
"automobile-and-accessories",
"clothing-store",
"hardware",
"home-audio-and-accessories",
"personal-care",
"art-and-craft-supplies",
"video-games",
"stationery",
"toys",
"plant-nursery",
"toys-and-games",
"large-product-range",
"home-appliances",
"regular-retail-store",
"mobile-phones",
"cosmetics-and-skincare",
"health-and-beauty",
"international",
"art-and-craft-supplies",
"basic-service",
"school-and-office-supplies",
"fertilizer",
"kitchen-appliances",
"home-furnishings",
"kitchen-accessories",
"apparel-and-accessories",
"home-and-kitchen",
"tools-and-home-improvement",
"perfumery",
"online-and-in-store",
"computer-and-electronics",
"accessories-store",
"home-improvement-supplies",
"kids-utilities",
"gardening-supplies",
"games",
"shoes-and-accessories-store",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "ec410551-b8dd-387e-beb3-5b50b06e3125",
"name": "Sivvi",
"description": "SIVVI is the only app you need for shopping fashion in the Middle East. Find the biggest brands for the best prices, and be inspired by the latest trends and easy to shop edits for women, men and kids.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD71_1_Sivvi_New_Image.jpg",
"dominantColorCode": "#eff2f9",
"externalId": "AD71",
"image": "https://dpimages.crayondata.com/high-res-image/adib/sivvi-logo.jpg",
"url": "https://www.sivvi.com/uae-en/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "7124",
"name": "Get upto 5% discount on Sivvi",
"description": "Get upto 5% discount on Sivvi\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-09-27T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/sivvi1%20Offer.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://www.sivvi.com/uae-en/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD71&subid2=7124&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"gifts-and-souvenirs",
"perfumery",
"home-furnishings",
"regular-retail-store",
"delivery-service",
"personal-care",
"cosmetics-and-skincare",
"health-and-beauty",
"apparel-and-accessories",
"home-and-kitchen",
"kitchen-accessories",
"large-product-range",
"gifts-and-souvenirs",
"shoes-and-accessories-store",
"basic-service",
"apparel-and-accessories",
"other-products",
"multi-brand",
"online"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "49629e58-8fe0-3bf2-8e19-882a4ee3176e",
"name": "Tryano",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/BO4843_1_Tryano_New_Image.jpg",
"dominantColorCode": "#f1f1f1",
"externalId": "BO4843",
"image": "https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg",
"url": "https://www.tryano.com/en-ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "6332",
"name": "Get exclusive offers on Tryano",
"description": "Get exclusive offers on Tryano\n1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-04-13T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=974&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=BO4843&aff_sub3=6332&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"clothing-store",
"accessories-store",
"regular-retail-store",
"basic-service",
"large-product-range",
"premium",
"online-and-in-store",
"local"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7eb58a5a-9110-49cd-9e41-d15bc99439c2",
"name": "Mothercare",
"description": "The Mothercare brand is synonymous with children and parenting. it carries with it a reputation for specialism, quality, safety and innovation in providing products and services for mothers, mothers-to-be, babies and young children",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC86_1_Mothercare_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC86",
"image": "https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg",
"url": "https://www.mothercare.ae/en/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "892",
"name": "Get upto 10% cashback on Mothercare",
"description": "Get upto 10% cashback on Mothercare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=403&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC86&aff_sub3=892&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"basic-service",
"apparel-and-accessories",
"kids-utilities",
"standalone-store",
"clothing-store",
"online-and-in-store",
"toys-and-games",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "55e97f4d-2f76-4ba1-b417-27d0fece9199",
"name": "Blackshark",
"description": "Black Shark is a cutting-edge gaming technology company developing a 360 degree gaming eco-system based on hardware, software and service. This is currently carried out by our flagship gaming smartphones. Ultimately we aim to provide an unmatched gaming experience to our international fanbase and to create the best gaming world with global gamers.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD10_1_Blackshark_New_Image.jpg",
"dominantColorCode": "#FCFFE0",
"externalId": "AD10",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png",
"url": "http://global.blackshark.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "4784",
"name": "Get upto 2% cashback on Blackshark",
"description": "Get upto 2% cashback on Blackshark\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-01T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ad.admitad.com/g/8wvyx9bxy9d193180536480c2cdbcd/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD10&subid2=4784&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"video-games",
"single-brand",
"international",
"mobile-phones",
"computer-and-electronics",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.474612Z"
},
{
"id": "fPf5EcPHRc6QyK-4s9QvCQ",
"listName": "What\u2019s new in toys, games & fashion",
"listType": "DISCOVERY",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.474824Z"
},
{
"id": "wAZnR_XBQqO9_re652YRmg",
"listName": "Your favorites",
"listType": "REPEAT",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.47506Z"
},
{
"id": "etB2Adp6RqumNsxdgkBcqg",
"listName": "Crème de la crème",
"listType": "CROSS_CATEGORY",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.475259Z"
},
{
"id": "jp17NMZ2Teu-N6RjppeSCA",
"listName": "Season of love",
"listType": "202107",
"totalCount": 2,
"items": [
{
"item": {
"id": "42c04e94-9d07-4db2-a527-3bdbd848b62e",
"name": "Rosemary Perfumes",
"description": "The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg",
"dominantColorCode": "#becdd8",
"externalId": "DC48",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png",
"url": "https://www.rosemaryperfumes.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13838",
"name": "Get exclusive offers on Rose Mary Perfumes",
"description": "Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-02-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"perfumery",
"local",
"shopping-mall",
"health-and-beauty",
"multi-brand",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "07fa5146-8150-42a8-a89a-227304309fe2",
"name": "Ubuy",
"description": "Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount",
"category": "retail stores",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC150",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg",
"url": "https://www.ubuy.com",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like musical instruments, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "890",
"name": "Get exclusive offers on Ubuy",
"description": "Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "",
"cashbackValue": 2.5,
"offerStatus": "active",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=890&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
},
{
"id": "1754",
"name": "Get upto 10% discount on Ubuy using",
"description": "Get upto 10% discount on Ubuy using\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-27T00:00:00.389Z",
"validTo": "2023-02-12T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "uban242",
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "",
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1754&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"claimed": false,
"redeemed": false
}
},
{
"id": "1341",
"name": "Get exclusive offers on Ubuy",
"description": "Get exclusive offers on Ubuy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "",
"cashbackValue": 5.0,
"offerStatus": "active",
"url": "https://go.arabclicks.com/aff_c?offer_id=939&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1341&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
},
{
"id": "1909",
"name": "Get upto 10% discount on Ubuy",
"description": "Get upto 10% discount on Ubuy\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-27T00:00:00.389Z",
"validTo": "2023-02-12T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "uban230",
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "",
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1909&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"perfumery",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"cameras-and-accessories",
"multi-brand",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"international",
"kids-utilities",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"computer-and-electronics",
"travel-accessories",
"groceries",
"regular-retail-store",
"basic-service",
"home-improvement-supplies",
"pet-supplies",
"furniture",
"home-audio-and-accessories",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"books",
"musical-instrument",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.475386Z"
}
]
}
Scenario: [13.1:203]
To validate the response for category choices list and Validate all the list have more than 1 choices
ms: 1764
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:05.082 karate.env system property was: null
20:57:05.082 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
193
Given headers req_headers
0
194
And url baseUrl
0
195
And path choiceApiUrl
0
196
And request {category:retail stores, choiceCount:10, lang:en,city:dubai,includeCampaigns:true,servedAt:2022-04-06T23:59:59.000+00:00, times:1 }
0
197
When method Post
1716
20:57:05.086 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/choice/list
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 149
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"category":"retail stores","choiceCount":10,"lang":"en","city":"dubai","includeCampaigns":true,"servedAt":"2022-04-06T23:59:59.000+00:00","times":1}
20:57:06.793 response time in milliseconds: 1691
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:05 GMT
{"id":"0W9bgsFmS0CvdHcee_9ioQ","choices":[{"id":"kB08B4zYQtq7vci5prFTrQ","listName":"Selected just for you","listType":"NEXT_BEST","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.946647Z"},{"id":"Zxjh6n9aRH2RBjpb0tBv5w","listName":"Deals of the day","listType":"TRENDING","totalCount":9,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"3d541c25-6df9-4fd4-b5ce-8061a12abe67","name":"Ounass","description":"Many luxury fashion designers in the Middle East","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg","dominantColorCode":"#d5d5d7","externalId":"AC105","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","url":"https://www.ounass.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like electronic accessories, you might like this too","distance":0.0},"offers":[{"id":"1362","name":"Get upto 6% cashback on Ounass","description":"Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1362&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1843","name":"Get upto 5% discount on Ounass","description":"Get upto 5% discount on Ounass\n1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-06-24T00:00:00.389Z","validTo":"2023-09-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"aco67","termsAndConditions":"1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://ar.ounass.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1843&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1361","name":"Get exclusive offers on Ounass","description":"Get exclusive offers on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=194&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1361&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","home-and-kitchen","home-furnishings","shoes-and-accessories-store","apparel-and-accessories","gifts-and-souvenirs","furniture","accessories-store","health-and-beauty","multi-brand","standalone-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4a28a630-e64f-4287-9713-47b46450cb38","name":"Toys R Us","description":"Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don’t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We’re always growing and we’ll have more stores and online stores opening in the region soon – we can’t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC55","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","url":"https://www.toysrusmena.com/en-AE/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too","distance":0.0},"offers":[{"id":"842","name":"Get exclusive offers on Toys R Us","description":"Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC55&aff_sub3=842&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","video-games","party-supplies","bicycle-and-accessories","art-and-craft-supplies","multi-brand","costumes","sporting-equipment","online-and-in-store","toys-and-games","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","kids-utilities","games","international","shopping-mall","computer-and-electronics","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"58ab63ee-12e3-4d54-a9cc-3ea7619a8221","name":"Soukare","description":"souKare is one of the largest online stores for colored contact lenses.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg","dominantColorCode":"#e5f2fb","externalId":"AC124","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","url":"https://soukare.com/ar-sa/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"1389","name":"Get upto 5% cashback on Soukare","description":"Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC124&aff_sub3=1389&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","perfumery","health-and-beauty","multi-brand","standalone-store","personal-care","online-and-in-store","nutritional-supplements","pharmacy","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.946966Z"},{"id":"r5UaJ77zT6aFspQdKNGfMA","listName":"Best-selling offers","listType":"POPULARITY","totalCount":10,"items":[{"item":{"id":"8affa868-b20c-4e20-ba77-84b0679e683b","name":"Babysouk","description":"babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png","dominantColorCode":"#ffffff","externalId":"DC9","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","url":"https://www.babysouk.com/","tasteMatchScore":84,"tasteMatchScoreReason":"Because you like electronic accessories, you might like this too","distance":0.0},"offers":[{"id":"839","name":"Get exclusive offers on Babysouk","description":"Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC9&aff_sub3=839&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","multi-brand","online-and-in-store","travel-utilities","large-product-range","home-and-kitchen","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","kids-furniture","accessories-store","travel-accessories","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"12ba32e1-6757-4ab3-ad71-a00f8144c730","name":"Ferns N Petals","description":"Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg","dominantColorCode":"#d1b4ad","externalId":"DC26","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","url":"https://www.fnp.ae/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"1758","name":"Get upto 8% cashback on Ferns N Petals","description":"Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","online","basic-service","international","chocolates","gifts-and-souvenirs","florist","food-beverages-and-groceries","dry-fruits-and-nuts","confectionery","delivery-service","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"10101386-6f01-4f71-b603-ea46c20f2eb8","name":"Brands For Less","description":"The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg","dominantColorCode":"#00adcb","externalId":"DC13","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","url":"https://www.brandsforless.ae/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"830","name":"Get upto 1.5% cashback on Brands For Less","description":"Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-11-22T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["perfumery","kitchen-appliances","automobile-and-accessories","pet-supplies","health-and-beauty","pet-and-pet-supplies","online-and-in-store","footwear-store","computer-and-accessories","department-store","home-and-kitchen","home-furnishings","apparel-and-accessories","international","accessories-store","shopping-mall","mobile-phones","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dffc64f3-a8f1-4fbf-82a3-370a0c3999a7","name":"Amazon","description":"Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png","dominantColorCode":"#eaeceb","externalId":"AC8","image":"https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg","url":"https://www.amazon.sa","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like fashion accessories, you might like this too","distance":0.0},"offers":[{"id":"13843","name":"Get upto 8.4AED cashback on Amazon Home Services Bounty","description":"Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-02-19T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC8&aff_sub3=13843&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["video-games","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","multi-brand","footwear-store","toys-and-games","home-appliances","home-and-kitchen","home-furnishings","online","kitchen-accessories","luggage-store","books-and-music","accessories-store","computer-and-electronics","clothing-store","travel-accessories","groceries","basic-service","hypermarket","kitchen-appliances","pet-supplies","furniture","sporting-equipment","music-store","computer-and-accessories","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","gifts-and-souvenirs","mobile-phones","cosmetics-and-skincare","books","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4248f84c-bbca-425c-b193-211ca80dff51","name":"Aliexpress","description":"Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg","dominantColorCode":"#ced1d8","externalId":"AC7","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","url":"https://ar.aliexpress.com/","tasteMatchScore":74,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1357","name":"Get upto 9% cashback on Aliexpress","description":"Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["kitchen-appliances","pet-and-pet-supplies","multi-brand","sporting-equipment","toys-and-games","sports-and-outdoors","department-store","online","apparel-and-accessories","games","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"11d00ba0-7adc-4004-bb90-f5272ed9a5db","name":"Fresh To Home","description":"Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg","dominantColorCode":"#feffff","externalId":"AC51","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","url":"https://ae.freshtohome.com","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like groceries, you might like this too","distance":0.0},"offers":[{"id":"1374","name":"Get exclusive offers on Fresh To Home","description":"Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"988","name":"Get upto 4.5AED cashback on Fresh To Home","description":"Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","fruits-and-vegetables-store","specialty-food-products","food-beverages-and-groceries","meat-products","online-and-in-store","delivery-service","sea-food-products","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"89531d1e-212d-42dd-a3eb-cc740cd34ebe","name":"Banggood","description":"Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC19","image":"http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png","url":"https://www.banggood.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1370","name":"Get upto 22% cashback on Banggood","description":"Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":22.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC19&aff_sub3=1370&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["hardware","stationery","pet-supplies","health-and-beauty","pet-and-pet-supplies","multi-brand","sporting-equipment","sports-and-outdoors","department-store","home-appliances","home-and-kitchen","home-furnishings","online","apparel-and-accessories","international","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","personal-care","tools-and-home-improvement","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"42c04e94-9d07-4db2-a527-3bdbd848b62e","name":"Rosemary Perfumes","description":"The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg","dominantColorCode":"#becdd8","externalId":"DC48","image":"https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png","url":"https://www.rosemaryperfumes.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"13838","name":"Get exclusive offers on Rose Mary Perfumes","description":"Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-02-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","perfumery","local","shopping-mall","health-and-beauty","multi-brand","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7cc55868-bf35-4a9e-904b-0807697f1f61","name":"Rivolishop","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD2055_Rivolishop_New_Offer.jpeg","dominantColorCode":"#080808","externalId":"AD2055","image":"https://media.go2speed.org/brand/files/dcm/1296/rivoli-shop-vouchers-code.png","url":"https://rivolishop.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"7118","name":"Get upto 5% discount on Rivolishop","description":"Get upto 5% discount on Rivolishop\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-09-08T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/rivolishop_offer.jpeg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://rivolishop.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD2055&subid2=7118&subid3=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"891c1938-90b0-4eb9-9777-1f384f53a1b4","name":"Tomtop","description":"Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD77","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","url":"http://tomtop.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too","distance":0.0},"offers":[{"id":"6295","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMR5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6224","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6137","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMK6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6288","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMH7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon","claimed":false,"redeemed":false}},{"id":"5983","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMJ6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6045","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6307","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADML6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6285","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6076","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6239","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMI7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6233","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6252","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMP8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6217","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6145","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMS8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6260","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMF8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6271","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMVD7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6274","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMET7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["stationery","automobile-and-accessories","bicycle-and-accessories","health-and-beauty","cameras-and-accessories","pet-and-pet-supplies","multi-brand","toys-and-games","home-appliances","home-and-kitchen","online","kitchen-accessories","computer-and-electronics","regular-retail-store","basic-service","kitchen-appliances","pet-supplies","home-audio-and-accessories","sporting-equipment","sports-and-outdoors","toys","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","cosmetics-and-skincare","school-and-office-supplies","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.947513Z"},{"id":"Mdt9BjiWT9-I1VQMHgPk3Q","listName":"Because you are interested in fashion & toys","listType":"TAG_BASED","totalCount":10,"items":[{"item":{"id":"12ba32e1-6757-4ab3-ad71-a00f8144c730","name":"Ferns N Petals","description":"Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg","dominantColorCode":"#d1b4ad","externalId":"DC26","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","url":"https://www.fnp.ae/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"1758","name":"Get upto 8% cashback on Ferns N Petals","description":"Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","online","basic-service","international","chocolates","gifts-and-souvenirs","florist","food-beverages-and-groceries","dry-fruits-and-nuts","confectionery","delivery-service","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"4248f84c-bbca-425c-b193-211ca80dff51","name":"Aliexpress","description":"Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg","dominantColorCode":"#ced1d8","externalId":"AC7","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","url":"https://ar.aliexpress.com/","tasteMatchScore":74,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"1357","name":"Get upto 9% cashback on Aliexpress","description":"Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["kitchen-appliances","pet-and-pet-supplies","multi-brand","sporting-equipment","toys-and-games","sports-and-outdoors","department-store","online","apparel-and-accessories","games","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"11d00ba0-7adc-4004-bb90-f5272ed9a5db","name":"Fresh To Home","description":"Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg","dominantColorCode":"#feffff","externalId":"AC51","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","url":"https://ae.freshtohome.com","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like groceries, you might like this too","distance":0.0},"offers":[{"id":"1374","name":"Get exclusive offers on Fresh To Home","description":"Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"988","name":"Get upto 4.5AED cashback on Fresh To Home","description":"Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","fruits-and-vegetables-store","specialty-food-products","food-beverages-and-groceries","meat-products","online-and-in-store","delivery-service","sea-food-products","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"891c1938-90b0-4eb9-9777-1f384f53a1b4","name":"Tomtop","description":"Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD77","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","url":"http://tomtop.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like bicycle & accessories, you might like this too","distance":0.0},"offers":[{"id":"6295","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMR5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6224","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6137","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMK6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6288","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMH7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon","claimed":false,"redeemed":false}},{"id":"5983","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMJ6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6045","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6307","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADML6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6285","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADM5ALL","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6076","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO5","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6239","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMI7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6233","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMO7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6252","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMP8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6217","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMC6","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6145","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMS8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6260","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMF8","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6271","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMVD7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon","claimed":false,"redeemed":false}},{"id":"6274","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMET7","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["stationery","automobile-and-accessories","bicycle-and-accessories","health-and-beauty","cameras-and-accessories","pet-and-pet-supplies","multi-brand","toys-and-games","home-appliances","home-and-kitchen","online","kitchen-accessories","computer-and-electronics","regular-retail-store","basic-service","kitchen-appliances","pet-supplies","home-audio-and-accessories","sporting-equipment","sports-and-outdoors","toys","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","cosmetics-and-skincare","school-and-office-supplies","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"d67c656f-04a0-4e11-9b66-4ab180004234","name":"Danube Home","description":"Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region’s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC269","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","url":"https://uae.danubehome.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like kitchen essentials, you might like this too","distance":0.0},"offers":[{"id":"1350","name":"Get exclusive offers on Danube Home","description":"Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-11-10T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.9,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1350&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1539","name":"Get upto 50% discount on Danube Home","description":"Get upto 50% discount on Danube Home\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/danubehome_offer.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"AFYZTMC","termsAndConditions":"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://uae.danubehome.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1539&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","hardware","kitchen-appliances","home-improvement-supplies","furniture","health-and-beauty","multi-brand","online-and-in-store","toys-and-games","toys","plant-nursery","large-product-range","home-furnishings","home-and-kitchen","international","apparel-and-accessories","kitchen-accessories","kids-utilities","gardening-supplies","games","paint-supplies","cosmetics-and-skincare","personal-care","tools-and-home-improvement","delivery-service","fertilizer","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"dcd9f833-e362-3d15-b0c4-501f4df657d8","name":"Saramart","description":"Buy products for the best prices with free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg","dominantColorCode":"#909193","externalId":"DC49","image":"https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png","url":"APP ONLY","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2113","name":"Get upto 20% discount on Saramart","description":"Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"SM118","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=DC49&subid2=2113&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["multi-brand","automobile-and-accessories","clothing-store","hardware","home-audio-and-accessories","personal-care","art-and-craft-supplies","video-games","stationery","toys","plant-nursery","toys-and-games","large-product-range","home-appliances","regular-retail-store","mobile-phones","cosmetics-and-skincare","health-and-beauty","international","art-and-craft-supplies","basic-service","school-and-office-supplies","fertilizer","kitchen-appliances","home-furnishings","kitchen-accessories","apparel-and-accessories","home-and-kitchen","tools-and-home-improvement","perfumery","online-and-in-store","computer-and-electronics","accessories-store","home-improvement-supplies","kids-utilities","gardening-supplies","games","shoes-and-accessories-store","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"ec410551-b8dd-387e-beb3-5b50b06e3125","name":"Sivvi","description":"SIVVI is the only app you need for shopping fashion in the Middle East. Find the biggest brands for the best prices, and be inspired by the latest trends and easy to shop edits for women, men and kids.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD71_1_Sivvi_New_Image.jpg","dominantColorCode":"#eff2f9","externalId":"AD71","image":"https://dpimages.crayondata.com/high-res-image/adib/sivvi-logo.jpg","url":"https://www.sivvi.com/uae-en/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"7124","name":"Get upto 5% discount on Sivvi","description":"Get upto 5% discount on Sivvi\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-09-27T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/sivvi1%20Offer.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://www.sivvi.com/uae-en/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD71&subid2=7124&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["gifts-and-souvenirs","perfumery","home-furnishings","regular-retail-store","delivery-service","personal-care","cosmetics-and-skincare","health-and-beauty","apparel-and-accessories","home-and-kitchen","kitchen-accessories","large-product-range","gifts-and-souvenirs","shoes-and-accessories-store","basic-service","apparel-and-accessories","other-products","multi-brand","online"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"49629e58-8fe0-3bf2-8e19-882a4ee3176e","name":"Tryano","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/BO4843_1_Tryano_New_Image.jpg","dominantColorCode":"#f1f1f1","externalId":"BO4843","image":"https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg","url":"https://www.tryano.com/en-ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"6332","name":"Get exclusive offers on Tryano","description":"Get exclusive offers on Tryano\n1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-04-13T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=974&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=BO4843&aff_sub3=6332&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["clothing-store","accessories-store","regular-retail-store","basic-service","large-product-range","premium","online-and-in-store","local"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"7eb58a5a-9110-49cd-9e41-d15bc99439c2","name":"Mothercare","description":"The Mothercare brand is synonymous with children and parenting. it carries with it a reputation for specialism, quality, safety and innovation in providing products and services for mothers, mothers-to-be, babies and young children","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC86_1_Mothercare_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC86","image":"https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg","url":"https://www.mothercare.ae/en/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"892","name":"Get upto 10% cashback on Mothercare","description":"Get upto 10% cashback on Mothercare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=403&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC86&aff_sub3=892&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","basic-service","apparel-and-accessories","kids-utilities","standalone-store","clothing-store","online-and-in-store","toys-and-games","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"55e97f4d-2f76-4ba1-b417-27d0fece9199","name":"Blackshark","description":"Black Shark is a cutting-edge gaming technology company developing a 360 degree gaming eco-system based on hardware, software and service. This is currently carried out by our flagship gaming smartphones. Ultimately we aim to provide an unmatched gaming experience to our international fanbase and to create the best gaming world with global gamers.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD10_1_Blackshark_New_Image.jpg","dominantColorCode":"#FCFFE0","externalId":"AD10","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png","url":"http://global.blackshark.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like international brands, you might like this too","distance":0.0},"offers":[{"id":"4784","name":"Get upto 2% cashback on Blackshark","description":"Get upto 2% cashback on Blackshark\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-01T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://ad.admitad.com/g/8wvyx9bxy9d193180536480c2cdbcd/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD10&subid2=4784&subid3=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","video-games","single-brand","international","mobile-phones","computer-and-electronics","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.94796Z"},{"id":"9gp-2PyeTmSlw-aM_54tkw","listName":"What’s new in toys, games & fashion","listType":"DISCOVERY","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.948222Z"},{"id":"8FknurTGTCe8oOtJNRFfvg","listName":"Your favorites","listType":"REPEAT","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.948445Z"},{"id":"Ch72u8qDT4GOzYYC2DUQkA","listName":"Crème de la crème","listType":"CROSS_CATEGORY","totalCount":6,"items":[{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like school & office supplies, you might like this too","distance":0.0},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82,"tasteMatchScoreReason":"Because you like gadgets, you might like this too","distance":0.0},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78,"tasteMatchScoreReason":"Because you like opticals, you might like this too","distance":0.0},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1479","name":"Get upto 15USD discount on Eyewa","description":"Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1394","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon","claimed":true,"redeemed":false}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76,"tasteMatchScoreReason":"Because you like books & music, you might like this too","distance":0.0},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":true},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like fashion, you might like this too","distance":0.0},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1392","name":"Get exclusive offers on Mamas & Papas","description":"Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"836","name":"Get exclusive offers on Mamas And Papas","description":"Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2038-02-08T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"1391","name":"Get upto 8% cashback on Mamas & Papas","description":"Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","url":"https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70,"tasteMatchScoreReason":"Like this merchant to add it to your taste","distance":0.0},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon","claimed":false,"redeemed":false}},{"id":"2100","name":"Get upto 10AED discount on Noon Now Now","description":"Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"FUN77","termsAndConditions":"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","url":"APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.94868Z"},{"id":"C9ss9E7PSsuqLXE47eVz1Q","listName":"Season of love","listType":"202107","totalCount":2,"items":[{"item":{"id":"42c04e94-9d07-4db2-a527-3bdbd848b62e","name":"Rosemary Perfumes","description":"The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg","dominantColorCode":"#becdd8","externalId":"DC48","image":"https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png","url":"https://www.rosemaryperfumes.com/","tasteMatchScore":72,"tasteMatchScoreReason":"Because you like perfumes, you might like this too","distance":0.0},"offers":[{"id":"13838","name":"Get exclusive offers on Rose Mary Perfumes","description":"Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-02-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":"1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","url":"http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon","claimed":false,"redeemed":false}}],"tags":["basic-service","large-product-range","perfumery","local","shopping-mall","health-and-beauty","multi-brand","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false},{"item":{"id":"07fa5146-8150-42a8-a89a-227304309fe2","name":"Ubuy","description":"Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount","category":"retail stores","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg","dominantColorCode":"#ffffff","externalId":"AC150","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg","url":"https://www.ubuy.com","tasteMatchScore":70,"tasteMatchScoreReason":"Because you like musical instruments, you might like this too","distance":0.0},"offers":[{"id":"890","name":"Get exclusive offers on Ubuy","description":"Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"","cashbackValue":2.5,"offerStatus":"active","url":"https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=890&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}},{"id":"1754","name":"Get upto 10% discount on Ubuy using","description":"Get upto 10% discount on Ubuy using\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-27T00:00:00.389Z","validTo":"2023-02-12T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"uban242","image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"offline coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"","cashbackValue":0.0,"offerStatus":"active","url":"https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1754&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","claimed":false,"redeemed":false}},{"id":"1341","name":"Get exclusive offers on Ubuy","description":"Get exclusive offers on Ubuy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"","cashbackValue":5.0,"offerStatus":"active","url":"https://go.arabclicks.com/aff_c?offer_id=939&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1341&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","claimed":false,"redeemed":false}},{"id":"1909","name":"Get upto 10% discount on Ubuy","description":"Get upto 10% discount on Ubuy\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-27T00:00:00.389Z","validTo":"2023-02-12T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"uban230","image":"https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg","offerType":"offline coupon","payoutType":"cpa_percentage","offerSource":"arabclicks","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"","cashbackValue":0.0,"offerStatus":"active","url":"https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1909&aff_sub4=crayon","termsAndConditions":"1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","claimed":false,"redeemed":false}}],"tags":["perfumery","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","cameras-and-accessories","multi-brand","home-appliances","home-and-kitchen","home-furnishings","online","international","kids-utilities","kitchen-accessories","luggage-store","books-and-music","computer-and-electronics","travel-accessories","groceries","regular-retail-store","basic-service","home-improvement-supplies","pet-supplies","furniture","home-audio-and-accessories","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","books","musical-instrument","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"wishlisted":false}],"created":"2022-05-10T15:27:05.948913Z"}]}
198
Then status 200
0
199
Then print response
46
20:57:06.842 [print] {
"id": "0W9bgsFmS0CvdHcee_9ioQ",
"choices": [
{
"id": "kB08B4zYQtq7vci5prFTrQ",
"listName": "Selected just for you",
"listType": "NEXT_BEST",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.946647Z"
},
{
"id": "Zxjh6n9aRH2RBjpb0tBv5w",
"listName": "Deals of the day",
"listType": "TRENDING",
"totalCount": 9,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "3d541c25-6df9-4fd4-b5ce-8061a12abe67",
"name": "Ounass",
"description": "Many luxury fashion designers in the Middle East",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg",
"dominantColorCode": "#d5d5d7",
"externalId": "AC105",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"url": "https://www.ounass.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like electronic accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1362",
"name": "Get upto 6% cashback on Ounass",
"description": "Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1362&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1843",
"name": "Get upto 5% discount on Ounass",
"description": "Get upto 5% discount on Ounass\n1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-06-24T00:00:00.389Z",
"validTo": "2023-09-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "aco67",
"termsAndConditions": "1. The offer is valid upto 2022-09-30\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ar.ounass.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1843&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1361",
"name": "Get exclusive offers on Ounass",
"description": "Get exclusive offers on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/194/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=194&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC105&aff_sub3=1361&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"home-furnishings",
"shoes-and-accessories-store",
"apparel-and-accessories",
"gifts-and-souvenirs",
"furniture",
"accessories-store",
"health-and-beauty",
"multi-brand",
"standalone-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4a28a630-e64f-4287-9713-47b46450cb38",
"name": "Toys R Us",
"description": "Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don\u2019t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We\u2019re always growing and we\u2019ll have more stores and online stores opening in the region soon \u2013 we can\u2019t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC55",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"url": "https://www.toysrusmena.com/en-AE/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "842",
"name": "Get exclusive offers on Toys R Us",
"description": "Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC55&aff_sub3=842&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"video-games",
"party-supplies",
"bicycle-and-accessories",
"art-and-craft-supplies",
"multi-brand",
"costumes",
"sporting-equipment",
"online-and-in-store",
"toys-and-games",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"kids-utilities",
"games",
"international",
"shopping-mall",
"computer-and-electronics",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "58ab63ee-12e3-4d54-a9cc-3ea7619a8221",
"name": "Soukare",
"description": "souKare is one of the largest online stores for colored contact lenses.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg",
"dominantColorCode": "#e5f2fb",
"externalId": "AC124",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"url": "https://soukare.com/ar-sa/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1389",
"name": "Get upto 5% cashback on Soukare",
"description": "Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC124&aff_sub3=1389&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"perfumery",
"health-and-beauty",
"multi-brand",
"standalone-store",
"personal-care",
"online-and-in-store",
"nutritional-supplements",
"pharmacy",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.946966Z"
},
{
"id": "r5UaJ77zT6aFspQdKNGfMA",
"listName": "Best-selling offers",
"listType": "POPULARITY",
"totalCount": 10,
"items": [
{
"item": {
"id": "8affa868-b20c-4e20-ba77-84b0679e683b",
"name": "Babysouk",
"description": "babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png",
"dominantColorCode": "#ffffff",
"externalId": "DC9",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"url": "https://www.babysouk.com/",
"tasteMatchScore": 84,
"tasteMatchScoreReason": "Because you like electronic accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "839",
"name": "Get exclusive offers on Babysouk",
"description": "Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC9&aff_sub3=839&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"multi-brand",
"online-and-in-store",
"travel-utilities",
"large-product-range",
"home-and-kitchen",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"kids-furniture",
"accessories-store",
"travel-accessories",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "12ba32e1-6757-4ab3-ad71-a00f8144c730",
"name": "Ferns N Petals",
"description": "Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg",
"dominantColorCode": "#d1b4ad",
"externalId": "DC26",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"url": "https://www.fnp.ae/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1758",
"name": "Get upto 8% cashback on Ferns N Petals",
"description": "Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"basic-service",
"international",
"chocolates",
"gifts-and-souvenirs",
"florist",
"food-beverages-and-groceries",
"dry-fruits-and-nuts",
"confectionery",
"delivery-service",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "10101386-6f01-4f71-b603-ea46c20f2eb8",
"name": "Brands For Less",
"description": "The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg",
"dominantColorCode": "#00adcb",
"externalId": "DC13",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"url": "https://www.brandsforless.ae/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "830",
"name": "Get upto 1.5% cashback on Brands For Less",
"description": "Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-11-22T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC13&aff_sub3=830&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"perfumery",
"kitchen-appliances",
"automobile-and-accessories",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"online-and-in-store",
"footwear-store",
"computer-and-accessories",
"department-store",
"home-and-kitchen",
"home-furnishings",
"apparel-and-accessories",
"international",
"accessories-store",
"shopping-mall",
"mobile-phones",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dffc64f3-a8f1-4fbf-82a3-370a0c3999a7",
"name": "Amazon",
"description": "Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png",
"dominantColorCode": "#eaeceb",
"externalId": "AC8",
"image": "https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg",
"url": "https://www.amazon.sa",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like fashion accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13843",
"name": "Get upto 8.4AED cashback on Amazon Home Services Bounty",
"description": "Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-02-19T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC8&aff_sub3=13843&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"video-games",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"footwear-store",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"accessories-store",
"computer-and-electronics",
"clothing-store",
"travel-accessories",
"groceries",
"basic-service",
"hypermarket",
"kitchen-appliances",
"pet-supplies",
"furniture",
"sporting-equipment",
"music-store",
"computer-and-accessories",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"gifts-and-souvenirs",
"mobile-phones",
"cosmetics-and-skincare",
"books",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4248f84c-bbca-425c-b193-211ca80dff51",
"name": "Aliexpress",
"description": "Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg",
"dominantColorCode": "#ced1d8",
"externalId": "AC7",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"url": "https://ar.aliexpress.com/",
"tasteMatchScore": 74,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1357",
"name": "Get upto 9% cashback on Aliexpress",
"description": "Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"kitchen-appliances",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"sports-and-outdoors",
"department-store",
"online",
"apparel-and-accessories",
"games",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "11d00ba0-7adc-4004-bb90-f5272ed9a5db",
"name": "Fresh To Home",
"description": "Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg",
"dominantColorCode": "#feffff",
"externalId": "AC51",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"url": "https://ae.freshtohome.com",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like groceries, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1374",
"name": "Get exclusive offers on Fresh To Home",
"description": "Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "988",
"name": "Get upto 4.5AED cashback on Fresh To Home",
"description": "Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"fruits-and-vegetables-store",
"specialty-food-products",
"food-beverages-and-groceries",
"meat-products",
"online-and-in-store",
"delivery-service",
"sea-food-products",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "89531d1e-212d-42dd-a3eb-cc740cd34ebe",
"name": "Banggood",
"description": "Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC19",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png",
"url": "https://www.banggood.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1370",
"name": "Get upto 22% cashback on Banggood",
"description": "Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 22.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC19&aff_sub3=1370&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"hardware",
"stationery",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"sports-and-outdoors",
"department-store",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"apparel-and-accessories",
"international",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"personal-care",
"tools-and-home-improvement",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "42c04e94-9d07-4db2-a527-3bdbd848b62e",
"name": "Rosemary Perfumes",
"description": "The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg",
"dominantColorCode": "#becdd8",
"externalId": "DC48",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png",
"url": "https://www.rosemaryperfumes.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13838",
"name": "Get exclusive offers on Rose Mary Perfumes",
"description": "Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-02-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"perfumery",
"local",
"shopping-mall",
"health-and-beauty",
"multi-brand",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7cc55868-bf35-4a9e-904b-0807697f1f61",
"name": "Rivolishop",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD2055_Rivolishop_New_Offer.jpeg",
"dominantColorCode": "#080808",
"externalId": "AD2055",
"image": "https://media.go2speed.org/brand/files/dcm/1296/rivoli-shop-vouchers-code.png",
"url": "https://rivolishop.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "7118",
"name": "Get upto 5% discount on Rivolishop",
"description": "Get upto 5% discount on Rivolishop\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-09-08T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/rivolishop_offer.jpeg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://rivolishop.com/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD2055&subid2=7118&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "891c1938-90b0-4eb9-9777-1f384f53a1b4",
"name": "Tomtop",
"description": "Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD77",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"url": "http://tomtop.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "6295",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMR5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6224",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6137",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMK6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6288",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMH7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "5983",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMJ6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6045",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6307",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADML6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6285",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6076",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6239",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMI7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6233",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6252",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMP8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6217",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6145",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMS8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6260",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMF8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6271",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMVD7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6274",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMET7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"stationery",
"automobile-and-accessories",
"bicycle-and-accessories",
"health-and-beauty",
"cameras-and-accessories",
"pet-and-pet-supplies",
"multi-brand",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"online",
"kitchen-accessories",
"computer-and-electronics",
"regular-retail-store",
"basic-service",
"kitchen-appliances",
"pet-supplies",
"home-audio-and-accessories",
"sporting-equipment",
"sports-and-outdoors",
"toys",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"cosmetics-and-skincare",
"school-and-office-supplies",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.947513Z"
},
{
"id": "Mdt9BjiWT9-I1VQMHgPk3Q",
"listName": "Because you are interested in fashion & toys",
"listType": "TAG_BASED",
"totalCount": 10,
"items": [
{
"item": {
"id": "12ba32e1-6757-4ab3-ad71-a00f8144c730",
"name": "Ferns N Petals",
"description": "Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg",
"dominantColorCode": "#d1b4ad",
"externalId": "DC26",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"url": "https://www.fnp.ae/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1758",
"name": "Get upto 8% cashback on Ferns N Petals",
"description": "Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC26&aff_sub3=1758&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"basic-service",
"international",
"chocolates",
"gifts-and-souvenirs",
"florist",
"food-beverages-and-groceries",
"dry-fruits-and-nuts",
"confectionery",
"delivery-service",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "4248f84c-bbca-425c-b193-211ca80dff51",
"name": "Aliexpress",
"description": "Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg",
"dominantColorCode": "#ced1d8",
"externalId": "AC7",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"url": "https://ar.aliexpress.com/",
"tasteMatchScore": 74,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1357",
"name": "Get upto 9% cashback on Aliexpress",
"description": "Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC7&aff_sub3=1357&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"kitchen-appliances",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"sports-and-outdoors",
"department-store",
"online",
"apparel-and-accessories",
"games",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "11d00ba0-7adc-4004-bb90-f5272ed9a5db",
"name": "Fresh To Home",
"description": "Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg",
"dominantColorCode": "#feffff",
"externalId": "AC51",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"url": "https://ae.freshtohome.com",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like groceries, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1374",
"name": "Get exclusive offers on Fresh To Home",
"description": "Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=1374&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "988",
"name": "Get upto 4.5AED cashback on Fresh To Home",
"description": "Get upto 4.5AED cashback on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=647&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC51&aff_sub3=988&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"fruits-and-vegetables-store",
"specialty-food-products",
"food-beverages-and-groceries",
"meat-products",
"online-and-in-store",
"delivery-service",
"sea-food-products",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "891c1938-90b0-4eb9-9777-1f384f53a1b4",
"name": "Tomtop",
"description": "Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD77",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"url": "http://tomtop.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like bicycle & accessories, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "6295",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMR5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6295&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6224",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/2jz2o6qjeud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6224&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6137",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMK6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/6er7vzb8oud1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6137&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6288",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMH7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/p05rxk9lljd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6288&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "5983",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMJ6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/g8oue9abtgd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=5983&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6045",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8p1zauj5zwd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6045&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6307",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADML6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/jb5um0kvz5d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6307&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6285",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADM5ALL",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/3sbibyicytd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6285&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6076",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO5",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/c9oxiomklbd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6076&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6239",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMI7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/8khlmqyw6zd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6239&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6233",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMO7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/x8p9s0xjp6d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6233&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6252",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMP8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/u2xphbzhm4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6252&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6217",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMC6",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9wcicojx9hd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6217&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6145",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMS8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/5dte3i821xd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6145&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6260",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMF8",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/722vm7you7d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6260&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6271",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMVD7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/m20n267uypd1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6271&subid3=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "6274",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMET7",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://ad.admitad.com/g/9dc33r75i4d1931805364bf89f6ddb/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD77&subid2=6274&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"stationery",
"automobile-and-accessories",
"bicycle-and-accessories",
"health-and-beauty",
"cameras-and-accessories",
"pet-and-pet-supplies",
"multi-brand",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"online",
"kitchen-accessories",
"computer-and-electronics",
"regular-retail-store",
"basic-service",
"kitchen-appliances",
"pet-supplies",
"home-audio-and-accessories",
"sporting-equipment",
"sports-and-outdoors",
"toys",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"cosmetics-and-skincare",
"school-and-office-supplies",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "d67c656f-04a0-4e11-9b66-4ab180004234",
"name": "Danube Home",
"description": "Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region\u2019s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC269",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"url": "https://uae.danubehome.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like kitchen essentials, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1350",
"name": "Get exclusive offers on Danube Home",
"description": "Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-11-10T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.9,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1350&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1539",
"name": "Get upto 50% discount on Danube Home",
"description": "Get upto 50% discount on Danube Home\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/danubehome_offer.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AFYZTMC",
"termsAndConditions": "1. The offer is valid upto 2022-02-28\n2. The offer is valid for Home Furnishing, Electricals, Hardware only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://uae.danubehome.com/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC269&aff_sub3=1539&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"hardware",
"kitchen-appliances",
"home-improvement-supplies",
"furniture",
"health-and-beauty",
"multi-brand",
"online-and-in-store",
"toys-and-games",
"toys",
"plant-nursery",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"international",
"apparel-and-accessories",
"kitchen-accessories",
"kids-utilities",
"gardening-supplies",
"games",
"paint-supplies",
"cosmetics-and-skincare",
"personal-care",
"tools-and-home-improvement",
"delivery-service",
"fertilizer",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "dcd9f833-e362-3d15-b0c4-501f4df657d8",
"name": "Saramart",
"description": "Buy products for the best prices with free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg",
"dominantColorCode": "#909193",
"externalId": "DC49",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png",
"url": "APP ONLY",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2113",
"name": "Get upto 20% discount on Saramart",
"description": "Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SM118",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=DC49&subid2=2113&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"multi-brand",
"automobile-and-accessories",
"clothing-store",
"hardware",
"home-audio-and-accessories",
"personal-care",
"art-and-craft-supplies",
"video-games",
"stationery",
"toys",
"plant-nursery",
"toys-and-games",
"large-product-range",
"home-appliances",
"regular-retail-store",
"mobile-phones",
"cosmetics-and-skincare",
"health-and-beauty",
"international",
"art-and-craft-supplies",
"basic-service",
"school-and-office-supplies",
"fertilizer",
"kitchen-appliances",
"home-furnishings",
"kitchen-accessories",
"apparel-and-accessories",
"home-and-kitchen",
"tools-and-home-improvement",
"perfumery",
"online-and-in-store",
"computer-and-electronics",
"accessories-store",
"home-improvement-supplies",
"kids-utilities",
"gardening-supplies",
"games",
"shoes-and-accessories-store",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "ec410551-b8dd-387e-beb3-5b50b06e3125",
"name": "Sivvi",
"description": "SIVVI is the only app you need for shopping fashion in the Middle East. Find the biggest brands for the best prices, and be inspired by the latest trends and easy to shop edits for women, men and kids.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD71_1_Sivvi_New_Image.jpg",
"dominantColorCode": "#eff2f9",
"externalId": "AD71",
"image": "https://dpimages.crayondata.com/high-res-image/adib/sivvi-logo.jpg",
"url": "https://www.sivvi.com/uae-en/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "7124",
"name": "Get upto 5% discount on Sivvi",
"description": "Get upto 5% discount on Sivvi\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-09-27T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/sivvi1%20Offer.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://www.sivvi.com/uae-en/?subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD71&subid2=7124&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"gifts-and-souvenirs",
"perfumery",
"home-furnishings",
"regular-retail-store",
"delivery-service",
"personal-care",
"cosmetics-and-skincare",
"health-and-beauty",
"apparel-and-accessories",
"home-and-kitchen",
"kitchen-accessories",
"large-product-range",
"gifts-and-souvenirs",
"shoes-and-accessories-store",
"basic-service",
"apparel-and-accessories",
"other-products",
"multi-brand",
"online"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "49629e58-8fe0-3bf2-8e19-882a4ee3176e",
"name": "Tryano",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/BO4843_1_Tryano_New_Image.jpg",
"dominantColorCode": "#f1f1f1",
"externalId": "BO4843",
"image": "https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg",
"url": "https://www.tryano.com/en-ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "6332",
"name": "Get exclusive offers on Tryano",
"description": "Get exclusive offers on Tryano\n1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-04-13T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=974&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=BO4843&aff_sub3=6332&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"clothing-store",
"accessories-store",
"regular-retail-store",
"basic-service",
"large-product-range",
"premium",
"online-and-in-store",
"local"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "7eb58a5a-9110-49cd-9e41-d15bc99439c2",
"name": "Mothercare",
"description": "The Mothercare brand is synonymous with children and parenting. it carries with it a reputation for specialism, quality, safety and innovation in providing products and services for mothers, mothers-to-be, babies and young children",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC86_1_Mothercare_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC86",
"image": "https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg",
"url": "https://www.mothercare.ae/en/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "892",
"name": "Get upto 10% cashback on Mothercare",
"description": "Get upto 10% cashback on Mothercare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=403&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC86&aff_sub3=892&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"basic-service",
"apparel-and-accessories",
"kids-utilities",
"standalone-store",
"clothing-store",
"online-and-in-store",
"toys-and-games",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "55e97f4d-2f76-4ba1-b417-27d0fece9199",
"name": "Blackshark",
"description": "Black Shark is a cutting-edge gaming technology company developing a 360 degree gaming eco-system based on hardware, software and service. This is currently carried out by our flagship gaming smartphones. Ultimately we aim to provide an unmatched gaming experience to our international fanbase and to create the best gaming world with global gamers.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD10_1_Blackshark_New_Image.jpg",
"dominantColorCode": "#FCFFE0",
"externalId": "AD10",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png",
"url": "http://global.blackshark.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like international brands, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "4784",
"name": "Get upto 2% cashback on Blackshark",
"description": "Get upto 2% cashback on Blackshark\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-01T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://ad.admitad.com/g/8wvyx9bxy9d193180536480c2cdbcd/?i=3&subid=0005e4bf-189d-49d0-8887-ab7cb9fde111&subid1=AD10&subid2=4784&subid3=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"video-games",
"single-brand",
"international",
"mobile-phones",
"computer-and-electronics",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.94796Z"
},
{
"id": "9gp-2PyeTmSlw-aM_54tkw",
"listName": "What\u2019s new in toys, games & fashion",
"listType": "DISCOVERY",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.948222Z"
},
{
"id": "8FknurTGTCe8oOtJNRFfvg",
"listName": "Your favorites",
"listType": "REPEAT",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.948445Z"
},
{
"id": "Ch72u8qDT4GOzYYC2DUQkA",
"listName": "Crème de la crème",
"listType": "CROSS_CATEGORY",
"totalCount": 6,
"items": [
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like school & office supplies, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC88&aff_sub3=1351&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82,
"tasteMatchScoreReason": "Because you like gadgets, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC52&aff_sub3=1372&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78,
"tasteMatchScoreReason": "Because you like opticals, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=849&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1479",
"name": "Get upto 15USD discount on Eyewa",
"description": "Get upto 15USD discount on Eyewa\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Eyewa%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Opticals, Eyewear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://eyewa.com/ae-en?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1479&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1394",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/333/adv_eyewa_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=333&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC23&aff_sub3=1394&aff_sub4=crayon",
"claimed": true,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76,
"tasteMatchScoreReason": "Because you like books & music, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC66&aff_sub3=1401&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": true
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like fashion, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": "1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "https://mamasandpapas.ae/?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=2115&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1392",
"name": "Get exclusive offers on Mamas & Papas",
"description": "Get exclusive offers on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/195/adv_mamasandpapas_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.arabclicks.com/aff_c?offer_id=195&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1392&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "836",
"name": "Get exclusive offers on Mamas And Papas",
"description": "Get exclusive offers on Mamas And Papas\n1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2038-02-08T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/180/MamasandPapas_806644.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2037-02-08\n2. The offer is valid for Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.urtrackinglink.com/aff_c?offer_id=180&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=836&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "1391",
"name": "Get upto 8% cashback on Mamas & Papas",
"description": "Get upto 8% cashback on Mamas & Papas\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"url": "https://go.arabclicks.com/aff_c?offer_id=655&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC81&aff_sub3=1391&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Like this merchant to add it to your taste",
"distance": 0.0
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": "1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2192&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
},
{
"id": "2100",
"name": "Get upto 10AED discount on Noon Now Now",
"description": "Get upto 10AED discount on Noon Now Now\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home Delivery 5.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "FUN77",
"termsAndConditions": "1. The offer is valid upto 2022-12-31\n2. The offer is valid for Food Delivery only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"url": "APP ONLY?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC368&aff_sub3=2100&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.94868Z"
},
{
"id": "C9ss9E7PSsuqLXE47eVz1Q",
"listName": "Season of love",
"listType": "202107",
"totalCount": 2,
"items": [
{
"item": {
"id": "42c04e94-9d07-4db2-a527-3bdbd848b62e",
"name": "Rosemary Perfumes",
"description": "The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg",
"dominantColorCode": "#becdd8",
"externalId": "DC48",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png",
"url": "https://www.rosemaryperfumes.com/",
"tasteMatchScore": 72,
"tasteMatchScoreReason": "Because you like perfumes, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "13838",
"name": "Get exclusive offers on Rose Mary Perfumes",
"description": "Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-02-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": "1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"url": "http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=DC48&aff_sub3=13838&aff_sub4=crayon",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"basic-service",
"large-product-range",
"perfumery",
"local",
"shopping-mall",
"health-and-beauty",
"multi-brand",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
},
{
"item": {
"id": "07fa5146-8150-42a8-a89a-227304309fe2",
"name": "Ubuy",
"description": "Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount",
"category": "retail stores",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC150",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg",
"url": "https://www.ubuy.com",
"tasteMatchScore": 70,
"tasteMatchScoreReason": "Because you like musical instruments, you might like this too",
"distance": 0.0
},
"offers": [
{
"id": "890",
"name": "Get exclusive offers on Ubuy",
"description": "Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "",
"cashbackValue": 2.5,
"offerStatus": "active",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=890&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
},
{
"id": "1754",
"name": "Get upto 10% discount on Ubuy using",
"description": "Get upto 10% discount on Ubuy using\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-27T00:00:00.389Z",
"validTo": "2023-02-12T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "uban242",
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "",
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1754&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"claimed": false,
"redeemed": false
}
},
{
"id": "1341",
"name": "Get exclusive offers on Ubuy",
"description": "Get exclusive offers on Ubuy\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "",
"cashbackValue": 5.0,
"offerStatus": "active",
"url": "https://go.arabclicks.com/aff_c?offer_id=939&aff_id=68962&aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1341&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for crayon card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"claimed": false,
"redeemed": false
}
},
{
"id": "1909",
"name": "Get upto 10% discount on Ubuy",
"description": "Get upto 10% discount on Ubuy\n1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-27T00:00:00.389Z",
"validTo": "2023-02-12T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "uban230",
"image": "https://media.go2speed.org/brand/files/arabclicks/939/adv_ubuy_icon.jpg",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"offerSource": "arabclicks",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "",
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://www.ubuy.com?aff_sub=0005e4bf-189d-49d0-8887-ab7cb9fde111&aff_sub2=AC150&aff_sub3=1909&aff_sub4=crayon",
"termsAndConditions": "1. The offer is valid upto 2022-02-12\n2. The offer is valid for Beauty, Fashion, Consumer Platforms, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for crayon card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"claimed": false,
"redeemed": false
}
}
],
"tags": [
"perfumery",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"cameras-and-accessories",
"multi-brand",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"international",
"kids-utilities",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"computer-and-electronics",
"travel-accessories",
"groceries",
"regular-retail-store",
"basic-service",
"home-improvement-supplies",
"pet-supplies",
"furniture",
"home-audio-and-accessories",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"books",
"musical-instrument",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"wishlisted": false
}
],
"created": "2022-05-10T15:27:05.948913Z"
}
]
}
Scenario: [14.1:218]
To validate the response of search API
ms: 1835
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:05.267 karate.env system property was: null
20:57:05.268 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
208
Given headers req_headers
0
209
And url baseUrl
0
210
And path searchApiUrl
1
211
And request {city:Abano Terme, searchWord:retail, lang:en,searchTextLang:en,servedAt:2022-04-06T23:59:59.000+00:00 }
0
212
When method Post
1803
20:57:05.274 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/merchant/search
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 121
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"city":"Abano Terme","searchWord":"retail","lang":"en","searchTextLang":"en","servedAt":"2022-04-06T23:59:59.000+00:00"}
20:57:07.068 response time in milliseconds: 1785
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < Vary: accept-encoding,origin,access-control-request-headers,access-control-request-method,accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:05 GMT
{"items":[{"item":{"id":"4248f84c-bbca-425c-b193-211ca80dff51","name":"Aliexpress","description":"Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg","dominantColorCode":"#ced1d8","externalId":"AC7","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","url":"https://ar.aliexpress.com/","tasteMatchScore":74},"offers":[{"id":"1357","name":"Get upto 9% cashback on Aliexpress","description":"Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962"}}],"tags":["kitchen-appliances","pet-and-pet-supplies","multi-brand","sporting-equipment","toys-and-games","sports-and-outdoors","department-store","online","apparel-and-accessories","games","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":true},{"item":{"id":"2ab7390e-377f-46ab-ac70-b6bbdb00df19","name":"Desert Cart","description":"Shop online for Electronics, Fashion, Home & Kitchen, Beauty & Grooming, Health, Toys, Baby, Books, Sports, etc. on desertcart","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC19_1_Desert_Cart_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC19","image":"https://media.go2speed.org/brand/files/dcm/1273/logo.5821c90d.png","url":"https://desertcart.ae/","tasteMatchScore":70},"offers":[{"id":"827","name":"Get exclusive offers on Desert Cart","description":"Get exclusive offers on Desert Cart\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Sports only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.7,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1273/logo.5821c90d.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2040-12-31\n2. The offer is valid for Sports only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.urtrackinglink.com/aff_c?offer_id=1273&aff_id=23876"}}],"tags":["regular-retail-store","perfumery","kitchen-appliances","automobile-and-accessories","video-games","furniture","cameras-and-accessories","health-and-beauty","multi-brand","toys-and-games","computer-and-accessories","toys","home-and-kitchen","large-product-range","online","international","kids-utilities","kitchen-accessories","apparel-and-accessories","books-and-music","mobile-phones","cosmetics-and-skincare","books","computer-and-electronics","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"3dc4ffce-0181-4ddd-a31d-353ace24bc39","name":"Eyewa","description":"eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg","dominantColorCode":"#eae9ee","externalId":"DC23","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","url":"https://eyewa.com/ae-en/","tasteMatchScore":78},"offers":[{"id":"849","name":"Get exclusive offers on Eyewa","description":"Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876"}}],"tags":["basic-service","large-product-range","online","opticals","health-and-beauty","multi-brand","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"4abb1354-aa06-34cc-a2d7-2ce589fc4b30","name":"Cartlow","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC365_1_Cartlow_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC365","image":"https://dpimages.crayondata.com/high-res-image/adib/Cartlow_Logo.png","url":"https://cartlow.com/","tasteMatchScore":70},"offers":[{"id":"2101","name":"Get upto 10USD discount on Cartlow","description":"Get upto 10USD discount on Cartlow\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Electronics,Grocery, Accessories,Toys,Video Games, Home Appliances only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Ecommerce_1.jpeg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"DC141","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Electronics,Grocery, Accessories,Toys,Video Games, Home Appliances only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://cartlow.com/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"25fa539a-399b-3870-beab-e56d222408fa","name":"Prolon","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2282_1_Prolon_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC2282","image":"https://media.go2speed.org/brand/files/arabclicks/1005/adv_prolon_icon.jpg","url":"https://prolon.ae/","tasteMatchScore":70},"offers":[{"id":"6874","name":"Get upto 8% cashback on Prolon","description":"Get upto 8% cashback on Prolon\n1. The offer is valid upto 2023-06-27\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-06-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/1005/adv_prolon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-06-27\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=1005&aff_id=68962"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"c6a9fa99-fd06-34e8-80b8-920417ab220c","name":"Rituals","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC1256_1_Rituals_New_Image.jpg","dominantColorCode":"#FDCEC6","externalId":"AC1256","image":"https://media.go2speed.org/brand/files/arabclicks/954/adv_rituals_icon.jpg","url":"https://en-ae.rituals.com/","tasteMatchScore":70},"offers":[{"id":"2103","name":"Get upto 10% discount on Rituals","description":"Get upto 10% discount on Rituals\n1. The offer is valid upto 2022-03-11\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-03-11T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/rituals%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"AC18","termsAndConditions":["1. The offer is valid upto 2022-03-11\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://en-ae.rituals.com/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"03911f54-60da-33e2-85ec-4b286e3ff989","name":"Searush","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD2056_1_Searush_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AD2056","image":"https://dpimages.crayondata.com/high-res-image/adib/searush_logo.png","url":"https://searush.ae/","tasteMatchScore":70},"offers":[{"id":"7115","name":"Get upto 7% discount on Searush","description":"Get upto 7% discount on Searush\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Sports Apparel, Sports Accessories, Sports Equipment only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Shoes%201.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Sports Apparel, Sports Accessories, Sports Equipment only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://searush.ae/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"8055e02a-b761-39b3-b0b2-9eb1058b2738","name":"2071mall","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2308_1_2071mall_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC2308","image":"https://media.go2speed.org/brand/files/arabclicks/850/adv_2071mall_icon.jpg","url":"https://www.2071mall.com/","tasteMatchScore":70},"offers":[{"id":"7111","name":"Get upto 15AED discount on 2071mall","description":"Get upto 15AED discount on 2071mall\n1. The offer is valid upto 2022-10-31\n2. The offer is valid for Apparel & Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-10-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/E%20Commerce%202.jpg210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"AC935","termsAndConditions":["1. The offer is valid upto 2022-10-31\n2. The offer is valid for Apparel & Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://www.2071mall.com/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"f55d8615-662c-4ded-90bb-24103b60f35a","name":"Geekbuying","description":"Online shopping with GeekBuying is very easy as you get to shop from the comfort of your home and get products delivered at your doorstep","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC56_1_Geekbuying_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC56","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15467-1a74deca61fb1584.jpeg","url":"http://www.geekbuying.com/","tasteMatchScore":70},"offers":[{"id":"14086","name":"Get exclusive offers on Geekbuying","description":"Get exclusive offers on Geekbuying\n1. The offer is valid upto 2022-11-10\n2. The offer is valid for , Sports & Recreation only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-11-11T00:00:00.389Z","validTo":"2023-11-10T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.6,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15467-1a74deca61fb1584.jpeg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","redemptionCode":"GKBA1GU","termsAndConditions":["1. The offer is valid upto 2022-11-10\n2. The offer is valid for , Sports & Recreation only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://ad.admitad.com/g/x3ayoxoiyxd1931805360267b86f6e/?i=3"}}],"tags":["automobile-and-accessories","multi-brand","sporting-equipment","footwear-store","toys-and-games","computer-and-accessories","toys","home-appliances","large-product-range","online","sports-and-outdoors","department-store","apparel-and-accessories","international","accessories-store","mobile-phones","computer-and-electronics","clothing-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"ceeee1ea-e0ee-4b7e-844c-5b14c954c9bf","name":"Ourshopee","description":"Ourshopee.com is one of the leading and fast-growing virtual shopping website with strong presence in UAE, Oman, Qatar, Bahrain and Kuwait.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC106_1_Ourshopee_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC106","image":"https://media.go2speed.org/brand/files/arabclicks/733/adv_ourshopee_icon.jpg","url":"https://www.ourshopee.com/","tasteMatchScore":70},"offers":[{"id":"1352","name":"Get upto 5.1AED cashback on Ourshopee","description":"Get upto 5.1AED cashback on Ourshopee\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, Books & Education, TV & Electronics, Mobiles, Tablets & Computers, Grocery & Food, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/733/adv_ourshopee_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, Books & Education, TV & Electronics, Mobiles, Tablets & Computers, Grocery & Food, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=733&aff_id=68962"}}],"tags":["shoes-and-accessories-store","kitchen-appliances","home-improvement-supplies","food-beverages-and-groceries","home-audio-and-accessories","multi-brand","standalone-store","online-and-in-store","computer-and-accessories","department-store","home-appliances","large-product-range","home-and-kitchen","apparel-and-accessories","kitchen-accessories","mobile-phones","bread-and-baked-goods","computer-and-electronics","tools-and-home-improvement","groceries","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"7eb58a5a-9110-49cd-9e41-d15bc99439c2","name":"Mothercare","description":"The Mothercare brand is synonymous with children and parenting. it carries with it a reputation for specialism, quality, safety and innovation in providing products and services for mothers, mothers-to-be, babies and young children","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC86_1_Mothercare_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC86","image":"https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg","url":"https://www.mothercare.ae/en/","tasteMatchScore":70},"offers":[{"id":"892","name":"Get upto 10% cashback on Mothercare","description":"Get upto 10% cashback on Mothercare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=403&aff_id=68962"}}],"tags":["regular-retail-store","large-product-range","basic-service","apparel-and-accessories","kids-utilities","standalone-store","clothing-store","online-and-in-store","toys-and-games","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"ecc0c71f-d8f9-471f-84b9-60ec90b3c38b","name":"Mamas & Papas","description":"Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC81","image":"https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg","url":"https://ar.mamasandpapas.ae","tasteMatchScore":70},"offers":[{"id":"2115","name":"Get upto 15% discount on Mamas & Papas","description":"Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":["1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://mamasandpapas.ae/"}}],"tags":["regular-retail-store","large-product-range","apparel-and-accessories","international","kids-utilities","gifts-and-souvenirs","health-and-beauty","multi-brand","standalone-store","online-and-in-store","toys-and-games","nutritional-supplements","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"4f285595-f775-466b-8e3f-8f965a9d46a9","name":"G2a","description":"Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg","dominantColorCode":"#31c4f7","externalId":"AC52","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","url":"https://www.g2a.com/","tasteMatchScore":82},"offers":[{"id":"1372","name":"Get upto 4% cashback on G2a","description":"Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962"}}],"tags":["home-appliances","regular-retail-store","video-games","games","cameras-and-accessories","home-audio-and-accessories","computer-and-electronics","online-and-in-store","others","toys-and-games","computer-and-accessories","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":true},{"item":{"id":"8bb2ffed-ac48-4b2a-86f3-d3c03dd84a11","name":"Anotah","description":"Discover the new Anotah Fashion Online. The latest trends for Woman, Top Girls, Kids.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC560_1_Anotah_New_Image.jpg","dominantColorCode":"#cfced4","externalId":"AC560","image":"https://media.go2speed.org/brand/files/arabclicks/835/adv_anotah_icon.jpg","url":"http://www.anotah.com","tasteMatchScore":70},"offers":[{"id":"1637","name":"Get upto 10% discount on Anotah","description":"Get upto 10% discount on Anotah\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Women's Apparel, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"KWD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Anotah%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"AC63","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Women's Apparel, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://www.anotah.com/"}}],"tags":["basic-service","large-product-range","perfumery","apparel-and-accessories","international","shopping-mall","health-and-beauty","cosmetics-and-skincare","multi-brand","personal-care","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"03ed2583-2777-491c-a880-7375f9aa2093","name":"Faces","description":"Faces is the leading beauty omni-retailer with the latest fragrance, skincare, bath and body, makeup, haircare, and accessories in the region.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC42_1_Faces_New_Image.jpg","dominantColorCode":"#e6ded4","externalId":"AC42","image":"https://media.go2speed.org/brand/files/arabclicks/678/adv_faces_icon.jpg","url":"https://www.faces.com/sa-en","tasteMatchScore":70},"offers":[{"id":"1384","name":"Get exclusive offers on Faces","description":"Get exclusive offers on Faces\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/678/adv_faces_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=678&aff_id=68962"}}],"tags":["specialty-store","online","perfumery","gifts-and-souvenirs","health-and-beauty","cosmetics-and-skincare","personal-care","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"3e4da0e5-cf30-365b-8d75-e363515c8113","name":"Waaaw","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2289_1_Waaaw_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC2289","image":"https://media.go2speed.org/brand/files/arabclicks/1010/adv_waaaw_icon.jpg","url":"https://www.waaaw.com/","tasteMatchScore":70},"offers":[{"id":"6876","name":"Get exclusive offers on Waaaw","description":"Get exclusive offers on Waaaw\n1. The offer is valid upto 2022-07-06\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2023-07-06T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/1010/adv_waaaw_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2022-07-06\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=1010&aff_id=68962"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"7d68781d-ccdf-305a-90c5-8e85e9147c09","name":"Samma3a","description":"We are a group of highly motivated, music enthusiasts and sound quality lovers, we all have 10 to 15 years of professional working experience and wanted to start a business about what we loved, taking into consideration the fast and huge growth of the headphones market in this region. This is how the idea of the website started, we aimed to offer the online shoppers a unique experience to satisfy the demand for the right quality earphones/headphones and their related matched quality accessories. For many years, many of our friends and acquaintances were asking us for advice about how to buy audio equipments. We were their reference. And here, at samma3a.com, we wanted to relay our experience to you, and share the passion, knowledge in an interactive, simple, and enjoyable way. We would love to help the new and confused users to buy the best option, we want to simplify choosing the correct product while enhancing the music experience for the mobile users… and remember, it’s not just about giving the options for you to choose from or providing a long technical complicated lists of specifications, it’s about what suits each listener for her/his know - maybe unknown- needs.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC365_1_Samma3a_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC365","image":"https://media.go2speed.org/brand/files/arabclicks/804/adv_samma3a_icon.jpg","url":"https://www.samma3a.com/","tasteMatchScore":70},"offers":[{"id":"1358","name":"Get exclusive offers on Samma3a","description":"Get exclusive offers on Samma3a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for TV & Electronics, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/804/adv_samma3a_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for TV & Electronics, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=804&aff_id=68962"}}],"tags":["multi-brand","home-audio-and-accessories","computer-and-accessories","books-and-music","other-products","large-product-range","regular-retail-store","cameras-and-accessories","online-and-in-store","computer-and-electronics","accessories-store","international","delivery-service","basic-service","musical-instrument"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"19f2f40d-690d-398d-9cd2-9a35929b2b24","name":"Beauti","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2266_1_Beauti_New_Image.jpg","dominantColorCode":"#d9ecd9","externalId":"AC2266","image":"https://media.go2speed.org/brand/files/arabclicks/998/adv_beauti_icon.jpg","url":"https://beauti.sa/","tasteMatchScore":70},"offers":[{"id":"6873","name":"Get upto 3% cashback on Beauti","description":"Get upto 3% cashback on Beauti\n1. The offer is valid upto 2023-06-07\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-06-07T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/998/adv_beauti_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-06-07\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=998&aff_id=68962"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"0b564195-6aff-36a9-b01f-a22956cb1439","name":"For Her","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC366_1_For_Her_New_Image.jpg","dominantColorCode":"#d8d7da","externalId":"DC366","image":"https://media.go2speed.org/brand/files/dcm/1371/9784b0b6-0f97-4e58-bdc0-e4ac54148f2a-200x.png","url":"https://forher.com.sa/","tasteMatchScore":70},"offers":[{"id":"2107","name":"Get upto 10% discount on For Her","description":"Get upto 10% discount on For Her\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Beauty%205.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"SUM","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://forher.com.sa/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"4bc63579-a6a4-3866-8308-880f3cc42147","name":"Ace Hardware","description":"Since 1924, ACE has been the world’s local home improvement store committed to delivering quality, friendly and helpful service. Established in Dubai in 1991 by the Al-Futtaim group, ACE now trades across eleven locations in the UAE, including its flagship stores in Dubai Festival City and Yas Island, Abu Dhabi. As part of ACE’s commitment to provide exemplary customer service, and in keeping with global ACE standards, each of our eleven stores are certified as ‘ACE Helpful’. This means that our customers are sure to find more than just products at ACE - they will find knowledgeable experts who are keen to offer support and keen advice across all categories in-store. All ACE stores in the UAE offer a wide selection of outdoor & garden, DIY & tools, electronics, homeware, electrical & security, car, paints, pets, and kids. With more than 50,000 products, ACE features world-class brands such as Karcher, Wilko, Dyson, Weber and more. ACE also has a popular value range that offers everyday items at competitive prices.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC2_1_Ace_Hardware_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC2","image":"https://media.go2speed.org/brand/files/dcm/1283/Ace_Hardware-logo-FFA4EB9678-seeklogo.com.png","url":"https://www.aceuae.com/","tasteMatchScore":70},"offers":[{"id":"820","name":"Get exclusive offers on Ace Hardware","description":"Get exclusive offers on Ace Hardware\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Automotive, Electronics only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1283/Ace_Hardware-logo-FFA4EB9678-seeklogo.com.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2040-12-31\n2. The offer is valid for Automotive, Electronics only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.urtrackinglink.com/aff_c?offer_id=1283&aff_id=23876"}}],"tags":["multi-brand","automobile-and-accessories","hardware","home-audio-and-accessories","furniture","plant-nursery","large-product-range","home-appliances","regular-retail-store","international","basic-service","sporting-equipment","fertilizer","kitchen-appliances","kitchen-accessories","apparel-and-accessories","apparel-and-accessories","travel-utilities","travel-accessories","home-and-kitchen","tools-and-home-improvement","building-supplies","online-and-in-store","computer-and-electronics","accessories-store","pet-and-pet-supplies","home-improvement-supplies","luggage-store","delivery-service","paint-supplies"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"0f1d91d2-5013-47fb-b148-b5b1189fe4aa","name":"Feel Unique","description":"Europe's largest online beauty retailer","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC44_1_Feel_Unique_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC44","image":"https://media.go2speed.org/brand/files/arabclicks/659/adv_feelunique_icon.jpg","url":"https://mena.feelunique.com/","tasteMatchScore":70},"offers":[{"id":"1386","name":"Get exclusive offers on Feel Unique","description":"Get exclusive offers on Feel Unique\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/660/adv_feelunique_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"http://go.arabclicks.com/aff_c?offer_id=660&aff_id=68962"}}],"tags":["regular-retail-store","online","international","health-and-beauty","cosmetics-and-skincare","multi-brand","personal-care","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"a92c32e4-0a8d-4c74-8d06-b50d271e6fbf","name":"Noon Now Now","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg","dominantColorCode":"#e5c488","externalId":"DC368","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","url":"https://www.noonnownow.com/","tasteMatchScore":70},"offers":[{"id":"2192","name":"Get exclusive offers on Noon Now Now","description":"Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-05-16T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1299/unnamed.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"93a2245e-25c6-4d82-8699-8aef2b956e97","name":"Speero.net","description":"Spiro is an electronic platform that provides you with many options related to the spare parts of your car, whether new or used parts The only platform that gives you different prices before purchasing any spare parts, so you can choose between the available options","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC370_1_Speero.net_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC370","image":"https://media.go2speed.org/brand/files/arabclicks/887/adv_speero_icon.jpg","url":"https://speero.net/","tasteMatchScore":70},"offers":[{"id":"1739","name":"Get exclusive offers on Speero.net","description":"Get exclusive offers on Speero.net\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Cars & Automotive, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/887/adv_speero_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Cars & Automotive, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=887&aff_id=68962"}}],"tags":["basic-service","large-product-range","automobile-and-accessories","local","multi-brand","computer-and-electronics","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"84b1f329-4457-456c-8859-d746d3dcb693","name":"Noon","description":"noon is the Middle East's homegrown online marketplace.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC97_1_Noon_New_Image.jpg","dominantColorCode":"#feffff","externalId":"AC97","image":"https://media.go2speed.org/brand/files/arabclicks/235/adv_noon_icon.jpg","url":"https://www.noon.com/egypt-en/","tasteMatchScore":70},"offers":[{"id":"1342","name":"Get exclusive offers on Noon","description":"Get exclusive offers on Noon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, Books & Education, TV & Electronics, Mobiles, Tablets & Computers, Grocery & Food, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.6,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/235/adv_noon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, Books & Education, TV & Electronics, Mobiles, Tablets & Computers, Grocery & Food, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=235&aff_id=68962"}}],"tags":["perfumery","chocolates","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","cameras-and-accessories","multi-brand","home-appliances","home-and-kitchen","home-furnishings","online","kids-utilities","books-and-music","computer-and-electronics","confectionery","basic-service","home-improvement-supplies","pet-supplies","supermarket","furniture","home-audio-and-accessories","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","cosmetics-and-skincare","books","dry-fruits-and-nuts","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"9722ce08-4dde-4055-b766-d15ab6d1e89a","name":"Jamalon","description":"Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg","dominantColorCode":"#8c8d8f","externalId":"AC66","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","url":"http://www.jamalon.com","tasteMatchScore":76},"offers":[{"id":"1401","name":"Get upto 6% cashback on Jamalon","description":"Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962"}}],"tags":["specialty-store","online","large-product-range","books-and-music","books","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":true},{"item":{"id":"23f8d6eb-d5fa-3e64-9bda-aabf78c39960","name":"Fordeal","description":"Incredible online shopping center. Free shipping! Big discounted! Cash on Delivery! 24 hours intimate customer service.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC28_1_Fordeal_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC28","image":"http://cdn.admitad.com/campaign/images/2020/12/7/24106-f0d4ce3a0a1296a2.png","url":"https://www.fordeal.com/","tasteMatchScore":70},"offers":[{"id":"13846","name":"Get exclusive offers on Fordeal Up To 15% Off","description":"Get exclusive offers on Fordeal Up To 15% Off\n1. The offer is valid upto 2041-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2042-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1372/512.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2041-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.urtrackinglink.com/aff_c?offer_id=1372&aff_id=23876"}}],"tags":["toys-and-games","apparel-and-accessories","mobile-phones","footwear-store","home-appliances","travel-utilities","multi-brand","kitchen-appliances","home-and-kitchen","art-and-craft-supplies","cosmetics-and-skincare","perfumery","luggage-store","school-and-office-supplies","personal-care","computer-and-electronics","delivery-service","toys","opticals","other-products","apparel-and-accessories","home-audio-and-accessories","regular-retail-store","computer-and-accessories","games","stationery","home-furnishings","health-and-beauty","automobile-and-accessories","others","kids-utilities","online-and-in-store","basic-service","travel-accessories","international"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"af11db53-1020-3dfe-9bc6-2ef7f1d1e052","name":"Tatayab","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC369_1_Tatayab_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC369","image":"https://dpimages.crayondata.com/high-res-image/adib/Tatayab_logo.png","url":"https://tatayab.com/AE-en/home","tasteMatchScore":70},"offers":[{"id":"2099","name":"Get upto 5% discount on Tatayab","description":"Get upto 5% discount on Tatayab\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Beauty%201.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADC30","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://tatayab.com/AE-en/home"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"62ea2f16-60bc-3340-8516-c185e79db61b","name":"Lightinthebox","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD1985_1_Lightinthebox_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD1985","image":"http://cdn.admitad.com/campaign/images/2020/9/30/5631-b86ef1f0f1c21054.png","url":"https://lightinthebox.com/","tasteMatchScore":70},"offers":[{"id":"10937","name":"Get exclusive offers on Lightinthebox","description":"Get exclusive offers on Lightinthebox\n1. The offer is valid upto 2022-03-01\n2. The offer is valid for Accessories & Bags, Homeware, Toys, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-11-03T00:00:00.389Z","validTo":"2023-03-01T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.4,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/5631-b86ef1f0f1c21054.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","redemptionCode":"LTS15","termsAndConditions":["1. The offer is valid upto 2022-03-01\n2. The offer is valid for Accessories & Bags, Homeware, Toys, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://ad.admitad.com/g/o2yzat9lhdd1931805367d95a12660/?i=3"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"04cfbb15-1e34-3152-8521-c7adc08ac10e","name":"Sephora","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD1023_1_Sephora_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD1023","image":"https://dpimages.crayondata.com/high-res-image/adib/sephora-logo.jpg","url":"https://www.sephora.ae","tasteMatchScore":70},"offers":[{"id":"2104","name":"Get upto 5% discount on Sephora","description":"Get upto 5% discount on Sephora\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion12.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"SS182","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://www.sephora.ae"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"11d00ba0-7adc-4004-bb90-f5272ed9a5db","name":"Fresh To Home","description":"Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg","dominantColorCode":"#feffff","externalId":"AC51","image":"https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg","url":"https://ae.freshtohome.com","tasteMatchScore":72},"offers":[{"id":"1374","name":"Get exclusive offers on Fresh To Home","description":"Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962"}}],"tags":["regular-retail-store","fruits-and-vegetables-store","specialty-food-products","food-beverages-and-groceries","meat-products","online-and-in-store","delivery-service","sea-food-products","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"48c04d4a-1282-3595-b34f-f549e65c3154","name":"West Elm","description":"West Elm offers modern furniture and home decor featuring inspiring designs and colors. Create a stylish space with home accessories from West Elm.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC163_1_West_Elm_New_Image.jpg","dominantColorCode":"#814031","externalId":"AC163","image":"https://media.go2speed.org/brand/files/arabclicks/692/adv_westelm_icon.jpg","url":"https://www.westelm.ae/","tasteMatchScore":70},"offers":[{"id":"1382","name":"Get upto 6% cashback on West Elm","description":"Get upto 6% cashback on West Elm\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/692/adv_westelm_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=692&aff_id=68962"}}],"tags":["home-and-kitchen","online-and-in-store","kitchen-accessories","furniture","home-furnishings","basic-service","regular-retail-store","delivery-service","large-product-range"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"ec410551-b8dd-387e-beb3-5b50b06e3125","name":"Sivvi","description":"SIVVI is the only app you need for shopping fashion in the Middle East. Find the biggest brands for the best prices, and be inspired by the latest trends and easy to shop edits for women, men and kids.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD71_1_Sivvi_New_Image.jpg","dominantColorCode":"#eff2f9","externalId":"AD71","image":"https://dpimages.crayondata.com/high-res-image/adib/sivvi-logo.jpg","url":"https://www.sivvi.com/uae-en/","tasteMatchScore":70},"offers":[{"id":"7124","name":"Get upto 5% discount on Sivvi","description":"Get upto 5% discount on Sivvi\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-09-27T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/sivvi1%20Offer.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://www.sivvi.com/uae-en/"}}],"tags":["gifts-and-souvenirs","perfumery","home-furnishings","regular-retail-store","delivery-service","personal-care","cosmetics-and-skincare","health-and-beauty","apparel-and-accessories","home-and-kitchen","kitchen-accessories","large-product-range","gifts-and-souvenirs","shoes-and-accessories-store","basic-service","apparel-and-accessories","other-products","multi-brand","online"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"cca2c8e0-a0a3-37b0-b0aa-07a5d876e2a3","name":"Myprotein","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2279_1_Myprotein_New_Image.jpg","dominantColorCode":"#dfdfdf","externalId":"AC2279","image":"https://media.go2speed.org/brand/files/arabclicks/69/Copy of adv_myprotein_icon.jpg","url":"https://www.myprotein.ae/","tasteMatchScore":70},"offers":[{"id":"6861","name":"Get upto 5% cashback on Myprotein","description":"Get upto 5% cashback on Myprotein\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"EUR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/69/Copy of adv_myprotein_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=69&aff_id=68962"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"d67c656f-04a0-4e11-9b66-4ab180004234","name":"Danube Home","description":"Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region’s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC269","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","url":"https://uae.danubehome.com/","tasteMatchScore":70},"offers":[{"id":"1350","name":"Get exclusive offers on Danube Home","description":"Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-11-10T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.9,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962"}}],"tags":["basic-service","hardware","kitchen-appliances","home-improvement-supplies","furniture","health-and-beauty","multi-brand","online-and-in-store","toys-and-games","toys","plant-nursery","large-product-range","home-furnishings","home-and-kitchen","international","apparel-and-accessories","kitchen-accessories","kids-utilities","gardening-supplies","games","paint-supplies","cosmetics-and-skincare","personal-care","tools-and-home-improvement","delivery-service","fertilizer","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"e900a403-b964-46db-b762-759743eff3e6","name":"Dresslily","description":"Shop for the latest online womens dresses, sweaters, outerwear, tops, bottoms, bags, shoes, jewelry, watches & accessories from DressLily.com","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC35_1_Dresslily_New_Image.jpg","dominantColorCode":"#f5f5f5","externalId":"AC35","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15504-af674f26cd481a83.jpeg","url":"http://dresslily.com/","tasteMatchScore":70},"offers":[{"id":"6284","name":"Get exclusive offers on Dresslily","description":"Get exclusive offers on Dresslily\n1. The offer is valid upto 2023-01-01\n2. The offer is valid for , Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-31T00:00:00.389Z","validTo":"2024-01-01T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15504-af674f26cd481a83.jpeg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"DLOFF","termsAndConditions":["1. The offer is valid upto 2023-01-01\n2. The offer is valid for , Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://ad.admitad.com/g/urfgdpmgwnd193180536c54bdbf551/?i=3"}}],"tags":["party-supplies","pet-supplies","pet-and-pet-supplies","toys-and-games","toys","department-store","large-product-range","home-furnishings","online","home-and-kitchen","apparel-and-accessories","accessories-store","clothing-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"10101386-6f01-4f71-b603-ea46c20f2eb8","name":"Brands For Less","description":"The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg","dominantColorCode":"#00adcb","externalId":"DC13","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","url":"https://www.brandsforless.ae/","tasteMatchScore":78},"offers":[{"id":"830","name":"Get upto 1.5% cashback on Brands For Less","description":"Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-11-22T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.5,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876"}}],"tags":["perfumery","kitchen-appliances","automobile-and-accessories","pet-supplies","health-and-beauty","pet-and-pet-supplies","online-and-in-store","footwear-store","computer-and-accessories","department-store","home-and-kitchen","home-furnishings","apparel-and-accessories","international","accessories-store","shopping-mall","mobile-phones","computer-and-electronics","clothing-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"319fdc76-41fd-4e2e-9436-7e35060b1655","name":"Lensfit","description":"Lensfit.com, a tech-focussed multi-channel eyewear manufacturer & retailer was founded with a rebellious spirit and a soaring objective","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC76_1_Lensfit_New_Image.jpg","dominantColorCode":"#fcfdff","externalId":"AC76","image":"https://dpimages.crayondata.com/high-res-image/adib/lensfit_logo.png","url":"https://www.lensfit.ae/","tasteMatchScore":70},"offers":[{"id":"1569","name":"Get upto 50 AED discount on Lensfit","description":"Get upto 50 AED discount on Lensfit\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-01-18T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/761/adv_lensfit_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ac63","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://www.lensfit.ae/"}}],"tags":["regular-retail-store","large-product-range","opticals","international","health-and-beauty","multi-brand","online-and-in-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"89531d1e-212d-42dd-a3eb-cc740cd34ebe","name":"Banggood","description":"Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC19","image":"http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png","url":"https://www.banggood.com/","tasteMatchScore":72},"offers":[{"id":"1370","name":"Get upto 22% cashback on Banggood","description":"Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":22.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962"}}],"tags":["hardware","stationery","pet-supplies","health-and-beauty","pet-and-pet-supplies","multi-brand","sporting-equipment","sports-and-outdoors","department-store","home-appliances","home-and-kitchen","home-furnishings","online","apparel-and-accessories","international","accessories-store","mobile-phones","cosmetics-and-skincare","computer-and-electronics","clothing-store","personal-care","tools-and-home-improvement","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"69d9bd13-383f-4454-9011-8e2ba40e693d","name":"Cotton On","description":"As Australia�s largest global retailer, we want to make a positive difference in the lives of everyone we touch; whether that�s in our backyard or on the other side of the world. It�s as simple as that.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC29_Cotton On_1.png","dominantColorCode":"#f4f4f4","externalId":"AC29","image":"https://media.go2speed.org/brand/files/arabclicks/169/adv_cottonon_icon.jpg","url":"https://cottonon.com","tasteMatchScore":70},"offers":[{"id":"1353","name":"Get upto 2.3% cashback on Cotton On","description":"Get upto 2.3% cashback on Cotton On\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.3,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/169/adv_cottonon_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=169&aff_id=68962"}}],"tags":["stationery","multi-brand","online-and-in-store","footwear-store","travel-utilities","computer-and-accessories","department-store","home-appliances","large-product-range","home-furnishings","home-and-kitchen","apparel-and-accessories","international","gifts-and-souvenirs","accessories-store","mobile-phones","computer-and-electronics","travel-accessories","clothing-store","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"afa7a75a-5acc-42f6-af04-0cb4bf1b446a","name":"Mumzworld","description":"Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg","dominantColorCode":"#fefefe","externalId":"AC88","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","url":"http://www.mumzworld.com","tasteMatchScore":82},"offers":[{"id":"1351","name":"Get exclusive offers on Mumzworld","description":"Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.1,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962"}}],"tags":["regular-retail-store","kitchen-appliances","stationery","food-beverages-and-groceries","health-and-beauty","multi-brand","sporting-equipment","toys-and-games","toys","large-product-range","home-furnishings","home-and-kitchen","online","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","books-and-music","kids-furniture","cosmetics-and-skincare","books","confectionery","personal-care","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":true},{"item":{"id":"56148ec2-0084-4c5f-a9e8-4bcf51f81643","name":"Ajmal Perfumes","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2263_Ajmal_Perfumes_New_Offer.jpg","dominantColorCode":"#dddbe9","externalId":"AC2263","image":"https://media.go2speed.org/brand/files/arabclicks/1047/adv_ajmalperfume_icon.jpg","url":"http://shop.ajmalperfume.com/uae_en","tasteMatchScore":70},"offers":[{"id":"6890","name":"Get exclusive offers on Ajmal Perfumes","description":"Get exclusive offers on Ajmal Perfumes\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/1047/adv_ajmalperfume_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=1047&aff_id=68962"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"2107d777-1a74-4edc-9514-31eefef3adcb","name":"Adorawe","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC364_Adorawe_New_Offer.jpg","dominantColorCode":"#d6b1a8","externalId":"DC364","image":"https://dpimages.crayondata.com/high-res-image/adib/Adorawe_logo.png","url":"https://ar.adorawe.net/","tasteMatchScore":70},"offers":[{"id":"2114","name":"Get upto 15USD discount on Adorawe","description":"Get upto 15USD discount on Adorawe\n1. The offer is valid upto 2022-06-18\n2. The offer is valid for Apparel,Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-18T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion%207.jpg210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"AWE84","termsAndConditions":["1. The offer is valid upto 2022-06-18\n2. The offer is valid for Apparel,Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://ar.adorawe.net/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"42c04e94-9d07-4db2-a527-3bdbd848b62e","name":"Rosemary Perfumes","description":"The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg","dominantColorCode":"#becdd8","externalId":"DC48","image":"https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png","url":"https://www.rosemaryperfumes.com/","tasteMatchScore":72},"offers":[{"id":"13838","name":"Get exclusive offers on Rose Mary Perfumes","description":"Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-02-03T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962"}}],"tags":["basic-service","large-product-range","perfumery","local","shopping-mall","health-and-beauty","multi-brand","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"23abab01-8798-45db-80f3-ae3aae343343","name":"Foreo","description":"Learn more about LUNA range of facial brushes, ISSA toothbrushes and UFO smart devices to bring your beauty routine on next level.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC48_1_Foreo_New_Image.jpg","dominantColorCode":"#bfc0c6","externalId":"AC48","image":"https://media.go2speed.org/brand/files/arabclicks/6/adv_foreo_icon.jpg","url":"https://www.foreo.com/ar","tasteMatchScore":70},"offers":[{"id":"1395","name":"Get upto 3% cashback on Foreo","description":"Get upto 3% cashback on Foreo\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/6/adv_foreo_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=6&aff_id=68962"}}],"tags":["specialty-store","online","large-product-range","health-and-beauty","cosmetics-and-skincare","multi-brand","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"4a28a630-e64f-4287-9713-47b46450cb38","name":"Toys R Us","description":"Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don’t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We’re always growing and we’ll have more stores and online stores opening in the region soon – we can’t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC55","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","url":"https://www.toysrusmena.com/en-AE/","tasteMatchScore":70},"offers":[{"id":"842","name":"Get exclusive offers on Toys R Us","description":"Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876"}}],"tags":["basic-service","video-games","party-supplies","bicycle-and-accessories","art-and-craft-supplies","multi-brand","costumes","sporting-equipment","online-and-in-store","toys-and-games","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","kids-utilities","games","international","shopping-mall","computer-and-electronics","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"12ba32e1-6757-4ab3-ad71-a00f8144c730","name":"Ferns N Petals","description":"Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg","dominantColorCode":"#d1b4ad","externalId":"DC26","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","url":"https://www.fnp.ae/","tasteMatchScore":82},"offers":[{"id":"1758","name":"Get upto 8% cashback on Ferns N Petals","description":"Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962"}}],"tags":["regular-retail-store","large-product-range","online","basic-service","international","chocolates","gifts-and-souvenirs","florist","food-beverages-and-groceries","dry-fruits-and-nuts","confectionery","delivery-service","toys"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"49629e58-8fe0-3bf2-8e19-882a4ee3176e","name":"Tryano","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/BO4843_1_Tryano_New_Image.jpg","dominantColorCode":"#f1f1f1","externalId":"BO4843","image":"https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg","url":"https://www.tryano.com/en-ae","tasteMatchScore":70},"offers":[{"id":"6332","name":"Get exclusive offers on Tryano","description":"Get exclusive offers on Tryano\n1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-04-13T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=974&aff_id=68962"}}],"tags":["clothing-store","accessories-store","regular-retail-store","basic-service","large-product-range","premium","online-and-in-store","local"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"55380ff0-6013-3c82-a50b-45e828ba9d35","name":"Swarovski","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD2057_1_Swarovski_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD2057","image":"https://dpimages.crayondata.com/high-res-image/adib/swarovski_logo.png","url":"https://www.swarovski.ae/","tasteMatchScore":70},"offers":[{"id":"7126","name":"Get upto 5USD discount on Swarovski","description":"Get upto 5USD discount on Swarovski\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories,Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-09-27T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/swarovski_offer1.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"ADIB","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories,Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://www.swarovski.ae/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"c4d7e9fd-3971-3b3d-9e74-7119e93c1670","name":"Pat Pat Web","description":"PatPat was founded in 2014 by close friends Albert Wang (CEO) and Ken Gao (COO) in Mountain View, CA. Albert & Ken both earned their Master’s degrees at Carnegie Mellon University, in Pittsburgh, PA. They also worked together as Principal Engineers at Oracle shortly thereafter. When Ken was expecting his first child, he discovered the children's clothing industry was severely lacking in fashionable, functionable options. Together with his friend, they created a shopping platform for moms to find great deals for themselves and their families, without spending a lot of time and money.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC627_Pat_Pat_Web_New_Offer.jpg","dominantColorCode":"#e8e6e7","externalId":"AC627","image":"https://media.go2speed.org/brand/files/arabclicks/900/adv_patpat_icon.jpg","url":"https://ar.patpat.com/","tasteMatchScore":70},"offers":[{"id":"1414","name":"Get upto 8% cashback on Pat Pat Web","description":"Get upto 8% cashback on Pat Pat Web\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/900/adv_patpat_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=900&aff_id=68962"}}],"tags":["multi-brand","online","home-furnishings","apparel-and-accessories","apparel-and-accessories","large-product-range","regular-retail-store","home-and-kitchen","pet-and-pet-supplies","kids-utilities","shoes-and-accessories-store","delivery-service","pet-supplies","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"60a0b978-54c9-3b96-8d38-1cdb0c3c2ed0","name":"Watsons","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC370_1_Watsons_New_Image.jpg","dominantColorCode":"#efe9e9","externalId":"DC370","image":"https://dpimages.crayondata.com/high-res-image/adib/Watsons_logo_logotype.png","url":"https://www.watsons.ae/","tasteMatchScore":70},"offers":[{"id":"2117","name":"Get upto 15% discount on Watsons","description":"Get upto 15% discount on Watsons\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Watson%20Offers.png210x250.jpg","offerSource":"DCM","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"WAT74","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://www.watsons.ae/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"8affa868-b20c-4e20-ba77-84b0679e683b","name":"Babysouk","description":"babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png","dominantColorCode":"#ffffff","externalId":"DC9","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","url":"https://www.babysouk.com/","tasteMatchScore":84},"offers":[{"id":"839","name":"Get exclusive offers on Babysouk","description":"Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876"}}],"tags":["regular-retail-store","multi-brand","online-and-in-store","travel-utilities","large-product-range","home-and-kitchen","apparel-and-accessories","kids-utilities","gifts-and-souvenirs","kids-furniture","accessories-store","travel-accessories","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"3d541c25-6df9-4fd4-b5ce-8061a12abe67","name":"Ounass","description":"Many luxury fashion designers in the Middle East","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg","dominantColorCode":"#d5d5d7","externalId":"AC105","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","url":"https://www.ounass.com/","tasteMatchScore":70},"offers":[{"id":"1362","name":"Get upto 6% cashback on Ounass","description":"Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962"}}],"tags":["regular-retail-store","home-and-kitchen","home-furnishings","shoes-and-accessories-store","apparel-and-accessories","gifts-and-souvenirs","furniture","accessories-store","health-and-beauty","multi-brand","standalone-store","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"dffc64f3-a8f1-4fbf-82a3-370a0c3999a7","name":"Amazon","description":"Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png","dominantColorCode":"#eaeceb","externalId":"AC8","image":"https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg","url":"https://www.amazon.sa","tasteMatchScore":76},"offers":[{"id":"13843","name":"Get upto 8.4AED cashback on Amazon Home Services Bounty","description":"Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2040-02-19T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.4,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876"}}],"tags":["video-games","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","multi-brand","footwear-store","toys-and-games","home-appliances","home-and-kitchen","home-furnishings","online","kitchen-accessories","luggage-store","books-and-music","accessories-store","computer-and-electronics","clothing-store","travel-accessories","groceries","basic-service","hypermarket","kitchen-appliances","pet-supplies","furniture","sporting-equipment","music-store","computer-and-accessories","sports-and-outdoors","toys","large-product-range","apparel-and-accessories","gifts-and-souvenirs","mobile-phones","cosmetics-and-skincare","books","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"c03fa270-9435-3755-9da4-3fc0dadd06ec","name":"Ericdress","description":"Established in 2012, Ericdress is a global online retail company. We ship to over 200 countries worldwide. Global Distribution & Warehousing enables us to provide fast delivery. Since its founding, ericdress has seen accelerating growth rate in a number of business indicators, including year-to-year gross merchandising value, number of orders, registered buyers and sellers, and listings.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD27_1_Ericdress_New_Image.jpg","dominantColorCode":"#fdfdfd","externalId":"AD27","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20949-6cbcddd0902e72f6.png","url":"https://www.ericdress.com/","tasteMatchScore":70},"offers":[{"id":"1470","name":"Get exclusive offers on Ericdress","description":"Get exclusive offers on Ericdress\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-01-24T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":8.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20949-6cbcddd0902e72f6.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ad11","termsAndConditions":["1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://ad.admitad.com/g/sfl6y6jwv0d193180536d392f6b614/?i=3"}}],"tags":["plant-nursery","local","housewares","home-furnishings","regular-retail-store","delivery-service","toys-and-games","personal-care","cosmetics-and-skincare","health-and-beauty","toys","apparel-and-accessories","home-and-kitchen","kitchen-accessories","large-product-range","hardware","shoes-and-accessories-store","basic-service","apparel-and-accessories","tools-and-home-improvement","online-and-in-store","gardening-supplies","multi-brand"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"25c2ba8c-6535-402a-9427-4aa6fa136c38","name":"Pottery Barn Kids","description":"Pottery Barn, a member of the Williams-Sonoma Inc. portfolio of brands, was established in New York City in 1949. Known for its casual, comfortable and stylish home furnishings, Pottery Barn draws inspiration from time-honored designs from around the world to create seasonal collections unique to its stores","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD440_1_Pottery_Barn_New_Image.jpg","dominantColorCode":"#f7f7f7","externalId":"AD440","image":"https://media.go2speed.org/brand/files/dcm/1346/pottery-barn-kids.jpg","url":"https://www.potterybarnkids.ae/en/","tasteMatchScore":70},"offers":[{"id":"581","name":"Get upto 6% cashback on Pottery Barn","description":"Get upto 6% cashback on Pottery Barn\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/479/adv_potterybarn_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=479&aff_id=68962"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"891c1938-90b0-4eb9-9777-1f384f53a1b4","name":"Tomtop","description":"Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD77","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","url":"http://tomtop.com/","tasteMatchScore":70},"offers":[{"id":"6295","name":"Get exclusive offers on Tomtop","description":"Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-23T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"ADMR5","termsAndConditions":["1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3"}}],"tags":["stationery","automobile-and-accessories","bicycle-and-accessories","health-and-beauty","cameras-and-accessories","pet-and-pet-supplies","multi-brand","toys-and-games","home-appliances","home-and-kitchen","online","kitchen-accessories","computer-and-electronics","regular-retail-store","basic-service","kitchen-appliances","pet-supplies","home-audio-and-accessories","sporting-equipment","sports-and-outdoors","toys","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","cosmetics-and-skincare","school-and-office-supplies","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"e679c708-9e9b-407a-b81b-81bfa012c7c6","name":"Quality Food","description":"We are unrivaled. We deliver a customer-centric experience. We are QualityFood.ae","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC114_1_Quality_Food_New_Image.jpg","dominantColorCode":"#0c0f06","externalId":"AC114","image":"https://media.go2speed.org/brand/files/arabclicks/626/adv_qualityfood_icon.jpg","url":"https://www.qualityfood.ae/","tasteMatchScore":70},"offers":[{"id":"598","name":"Get upto 1.6% cashback on Quality Food","description":"Get upto 1.6% cashback on Quality Food\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.6,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/626/adv_qualityfood_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=626&aff_id=68962"}}],"tags":["regular-retail-store","food-beverages-and-groceries","dairy-products","bread-and-baked-goods","standalone-store","natural-organic-products","meat-products","groceries","online-and-in-store","sea-food-products","fruits-and-vegetables-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"58ab63ee-12e3-4d54-a9cc-3ea7619a8221","name":"Soukare","description":"souKare is one of the largest online stores for colored contact lenses.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg","dominantColorCode":"#e5f2fb","externalId":"AC124","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","url":"https://soukare.com/ar-sa/","tasteMatchScore":70},"offers":[{"id":"1389","name":"Get upto 5% cashback on Soukare","description":"Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962"}}],"tags":["regular-retail-store","large-product-range","perfumery","health-and-beauty","multi-brand","standalone-store","personal-care","online-and-in-store","nutritional-supplements","pharmacy","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"7cc55868-bf35-4a9e-904b-0807697f1f61","name":"Rivolishop","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD2055_Rivolishop_New_Offer.jpeg","dominantColorCode":"#080808","externalId":"AD2055","image":"https://media.go2speed.org/brand/files/dcm/1296/rivoli-shop-vouchers-code.png","url":"https://rivolishop.com/","tasteMatchScore":70},"offers":[{"id":"7118","name":"Get upto 5% discount on Rivolishop","description":"Get upto 5% discount on Rivolishop\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-09-08T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/rivolishop_offer.jpeg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://rivolishop.com/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"1172d856-80a8-4d56-b7f8-c31116949c44","name":"Bloomingdales","description":"Bloomingdale?��s is a luxury omnichannel retailer like no other.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC22_1_Bloomingdales_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC22","image":"https://media.go2speed.org/brand/files/arabclicks/661/adv_bloomingdales_icon.jpg","url":"https://Bloomingdales.ae","tasteMatchScore":70},"offers":[{"id":"1736","name":"Get upto 10% discount on Bloomingdales","description":"Get upto 10% discount on Bloomingdales\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Apparel, Accessories,Jewelry, Beauty, Home Furnishing, Gifts only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-06-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/BLOOMINGDALES%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":["1. The offer is valid upto 2022-06-30\n2. The offer is valid for Apparel, Accessories,Jewelry, Beauty, Home Furnishing, Gifts only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://bloomingdales.ae"}}],"tags":["perfumery","kitchen-appliances","stationery","furniture","health-and-beauty","standalone-store","online-and-in-store","footwear-store","luxury","department-store","large-product-range","home-furnishings","home-and-kitchen","gifts-and-souvenirs","accessories-store","cosmetics-and-skincare","clothing-store","school-and-office-supplies","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"fc8414a8-6d95-4e25-ad31-78f32a2a6e37","name":"The Book Depository","description":"Book Depository is the world's most international online bookstore offering over 20 million books with free delivery worldwide.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC137_1_The_Book_Depository_New_Image.jpg","dominantColorCode":"#cbd0c9","externalId":"AC137","image":"https://media.go2speed.org/brand/files/arabclicks/303/adv_bookdepository_icon.jpg","url":"https://www.bookdepository.com/","tasteMatchScore":70},"offers":[{"id":"1393","name":"Get upto 4% cashback on The Book Depository","description":"Get upto 4% cashback on The Book Depository\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":4.0,"currency":"AUD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/303/adv_bookdepository_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=303&aff_id=68962"}}],"tags":["regular-retail-store","large-product-range","online","international","books-and-music","books","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"7d47892f-6bc9-3a88-94e8-feefca0f3bab","name":"Muji","description":"MUJI, originally founded in Japan in 1980, offers a wide variety of good quality products including household goods, apparel and food. Mujirushi Ryohin, MUJI in Japanese, translates as “no-brand quality goods.” MUJI is based on three core principles, which remain unchanged to this day: 1. Selection of materials 2. Streamlining of processes 3. Simplification of packages MUJI's products, born from an extremely rational manufacturing process, are succinct, but they are not in the minimalist style. That is, they are like empty vessels. Simplicity and emptiness yield the ultimate universality, embracing the feelings and thoughts of all people.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC42_1_Muji_New_Image.jpg","dominantColorCode":"#f3f4f8","externalId":"DC42","image":"https://media.go2speed.org/brand/files/arabclicks/968/adv_muji_icon.jpg","url":"https://www.muji.ae/en","tasteMatchScore":70},"offers":[{"id":"1432","name":"Get upto 6% cashback on Muji","description":"Get upto 6% cashback on Muji\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/968/adv_muji_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=968&aff_id=68962"}}],"tags":["multi-brand","online","furniture","home-furnishings","kitchen-accessories","stationery","apparel-and-accessories","apparel-and-accessories","travel-utilities","in-store","travel-accessories","large-product-range","home-appliances","regular-retail-store","home-and-kitchen","computer-and-electronics","cosmetics-and-skincare","shoes-and-accessories-store","luggage-store","international","shopping-mall","delivery-service","basic-service","school-and-office-supplies"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"8829d1ae-e250-3316-8a94-8c08ed9e8351","name":"Dailymealz","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC693_1_Dailymealz_New_Image.jpg","dominantColorCode":"#97F19E","externalId":"DC693","image":"https://media.go2speed.org/brand/files/dcm/1358/Logo.png","url":"https://dailymealz.com/","tasteMatchScore":70},"offers":[{"id":"6895","name":"Get exclusive offers on Dailymealz","description":"Get exclusive offers on Dailymealz\n1. The offer is valid upto 2041-12-31\n2. The offer is valid for Food & Drinks only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2042-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.2,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/dcm/1358/Logo.png","offerSource":"DCM","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2041-12-31\n2. The offer is valid for Food & Drinks only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"http://go.urtrackinglink.com/aff_c?offer_id=1358&aff_id=23876"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"ad42ec5f-aa9d-3501-aa39-aecde462da71","name":"Milano","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD1020_1_Milano_New_Image.jpg","dominantColorCode":"#f9f0e7","externalId":"AD1020","image":"https://dpimages.crayondata.com/high-res-image/adib/Milanoo.jpeg","url":"https://uae.milanomena.com/","tasteMatchScore":70},"offers":[{"id":"2119","name":"Get upto 10USD discount on Milano","description":"Get upto 10USD discount on Milano\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion%209.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"A407","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://uae.milanomena.com/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"2c90a843-e151-3b37-b5eb-bf167f7f1266","name":"Dwell Stores","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC1255_1_Dwell_Stores_New_Image.jpg","dominantColorCode":"#3f3534","externalId":"AC1255","image":"https://dpimages.crayondata.com/high-res-image/adib/dwellstore.jpg","url":"https://dwellstores.ae/","tasteMatchScore":70},"offers":[{"id":"2120","name":"Get upto 10% discount on Dwell Stores","description":"Get upto 10% discount on Dwell Stores\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Home D√©cor only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Home%20furnishing%205.jpg210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"DSJL007","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Home Décor only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://dwellstores.ae/"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"18f944d1-2711-35e1-b900-bb91703082f0","name":"Mestores","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2278_1_Mestores_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC2278","image":"https://media.go2speed.org/brand/files/arabclicks/973/adv_mestores_icon.jpg","url":"https://www.mestores.com/ar-sa/","tasteMatchScore":70},"offers":[{"id":"6871","name":"Get exclusive offers on Mestores","description":"Get exclusive offers on Mestores\n1. The offer is valid upto 2023-04-12\n2. The offer is valid for TV & Electronics, Mobiles, Tablets & Computers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-04-12T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":1.1,"currency":"SAR","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/973/adv_mestores_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-04-12\n2. The offer is valid for TV & Electronics, Mobiles, Tablets & Computers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"http://go.arabclicks.com/aff_c?offer_id=973&aff_id=68962"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"dcd9f833-e362-3d15-b0c4-501f4df657d8","name":"Saramart","description":"Buy products for the best prices with free shipping!","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg","dominantColorCode":"#909193","externalId":"DC49","image":"https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png","url":"APP ONLY","tasteMatchScore":70},"offers":[{"id":"2113","name":"Get upto 20% discount on Saramart","description":"Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg","offerSource":"Admitad","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"SM118","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"APP ONLY"}}],"tags":["multi-brand","automobile-and-accessories","clothing-store","hardware","home-audio-and-accessories","personal-care","art-and-craft-supplies","video-games","stationery","toys","plant-nursery","toys-and-games","large-product-range","home-appliances","regular-retail-store","mobile-phones","cosmetics-and-skincare","health-and-beauty","international","art-and-craft-supplies","basic-service","school-and-office-supplies","fertilizer","kitchen-appliances","home-furnishings","kitchen-accessories","apparel-and-accessories","home-and-kitchen","tools-and-home-improvement","perfumery","online-and-in-store","computer-and-electronics","accessories-store","home-improvement-supplies","kids-utilities","gardening-supplies","games","shoes-and-accessories-store","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"032b7ff8-0c59-3289-9ae1-cedc5be25f94","name":"Cars24","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC2269_1_Cars24_New_Image.jpg","dominantColorCode":"#d0d6cc","externalId":"AC2269","image":"https://media.go2speed.org/brand/files/arabclicks/1037/adv_cars24_icon.jpg","url":"https://cars24uae.app.link/HeVvNIS4jjb","tasteMatchScore":70},"offers":[{"id":"6887","name":"Get upto 224AED cashback on Cars24","description":"Get upto 224AED cashback on Cars24\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Cars & Automotive only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":224.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/1037/adv_cars24_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_flat","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Cars & Automotive only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=1037&aff_id=68962"}}],"tags":[""],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"55e97f4d-2f76-4ba1-b417-27d0fece9199","name":"Blackshark","description":"Black Shark is a cutting-edge gaming technology company developing a 360 degree gaming eco-system based on hardware, software and service. This is currently carried out by our flagship gaming smartphones. Ultimately we aim to provide an unmatched gaming experience to our international fanbase and to create the best gaming world with global gamers.","category":"retail stores","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD10_1_Blackshark_New_Image.jpg","dominantColorCode":"#FCFFE0","externalId":"AD10","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png","url":"http://global.blackshark.com/","tasteMatchScore":70},"offers":[{"id":"4784","name":"Get upto 2% cashback on Blackshark","description":"Get upto 2% cashback on Blackshark\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-01T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":2.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://ad.admitad.com/g/8wvyx9bxy9d193180536480c2cdbcd/?i=3"}}],"tags":["basic-service","large-product-range","video-games","single-brand","international","mobile-phones","computer-and-electronics","other-products","online-and-in-store","delivery-service","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"07fa5146-8150-42a8-a89a-227304309fe2","name":"Ubuy","description":"Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount","category":"retail stores","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg","dominantColorCode":"#ffffff","externalId":"AC150","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg","url":"https://www.ubuy.com","tasteMatchScore":70},"offers":[{"id":"890","name":"Get exclusive offers on Ubuy","description":"Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2041-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"image":"https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg","offerType":"online coupon","payoutType":"cpa_percentage","offerSource":"DCM","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","currency":"","cashbackValue":2.5,"offerStatus":"active","url":"https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876","termsAndConditions":["1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."]}}],"tags":["perfumery","food-beverages-and-groceries","health-and-beauty","pet-and-pet-supplies","cameras-and-accessories","multi-brand","home-appliances","home-and-kitchen","home-furnishings","online","international","kids-utilities","kitchen-accessories","luggage-store","books-and-music","computer-and-electronics","travel-accessories","groceries","regular-retail-store","basic-service","home-improvement-supplies","pet-supplies","furniture","home-audio-and-accessories","computer-and-accessories","large-product-range","apparel-and-accessories","mobile-phones","books","musical-instrument","delivery-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"55b64dbc-0e2e-46be-9de3-530621c29668","name":"Ssense","description":"Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg","dominantColorCode":"#090806","externalId":"AC128","image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","url":"https://www.ssense.com/","tasteMatchScore":78},"offers":[{"id":"1383","name":"Get upto 5% cashback on Ssense","description":"Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"HKD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962"}}],"tags":["regular-retail-store","basic-service","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","sleep-wear","others","footwear-store","swim-and-beach-wear","bags-and-wallets","large-product-range","jewellery-store","accessories-store","casual-wear","clothing-store","loafers","inner-wear-and-lingerie","boots","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"35d9cbfc-d31e-43c9-b199-8ff198ca1c04","name":"Nayomi","description":"Nayomi brings you a multitude of women's lingerie for all tastes and all forms, that way you will be sure not to go wrong with a lace bra while opting for the best support.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC91_1_Nayomi_New_Image.jpg","dominantColorCode":"#0e0604","externalId":"AC91","image":"https://media.go2speed.org/brand/files/arabclicks/833/adv_nayomi_icon.jpg","url":"https://www.nayomi.com/","tasteMatchScore":72},"offers":[{"id":"1380","name":"Get exclusive offers on Nayomi","description":"Get exclusive offers on Nayomi\n1. The offer is valid upto 2024-07-02\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-07-02T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/833/adv_nayomi_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2024-07-02\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://go.arabclicks.com/aff_c?offer_id=833&aff_id=68962"}}],"tags":["swim-and-beach-wear","international","women's-clothing","outerwear","casual-wear","sleep-wear","daily-clothing","clothing-store","inner-wear-and-lingerie","online-and-in-store","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"dd4d78da-8498-4db8-be1e-a453819ecb67","name":"Mikyajy","description":"Welcome to the colorful world of Mikyajy! Since its inception 20 years ago as a pioneer in Khaleeji color cosmetics and fragrance, Mikyajy has grown into a closely-knit family of 1.5 million loyal fans across Saudi Arabia, the UAE, Oman, Bahrain, Kuwait and Qatar!","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC610_1_Mikyajy_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC610","image":"https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg","url":"https://mikyajy.com/ksa_en/","tasteMatchScore":70},"offers":[{"id":"1411","name":"Get exclusive offers on Mikyajy","description":"Get exclusive offers on Mikyajy\n1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2025-07-27T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"AED","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"http://go.arabclicks.com/aff_c?offer_id=963&aff_id=68962"}}],"tags":["regular-retail-store","perfumery","health-and-beauty","multi-brand","online-and-in-store","travel-utilities","international","gifts-and-souvenirs","shopping-mall","cosmetics-and-skincare","travel-accessories","personal-care","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"7431b5de-0043-49ef-b586-e7e09a388ef2","name":"Metro Brazil","description":"ENJOY A WIDE RANGE OF HIGH-END BRAZILIAN CORSETS, SPORTSWEAR, ACCESSORIES AND LUXURIOUS LINGERIE","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC83_1_Metro_Brazil_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AC83","image":"https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg","url":"https://ar.metrobrazil.com/","tasteMatchScore":70},"offers":[{"id":"1365","name":"Get upto 14% cashback on Metro Brazil","description":"Get upto 14% cashback on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=773&aff_id=68962"}}],"tags":["swim-and-beach-wear","occasional-clothing","men-and-women's-clothing","outerwear","casual-wear","sleep-wear","daily-clothing","clothing-store","inner-wear-and-lingerie","active-and-sports-wear","online-and-in-store","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"9c70a451-cd1e-4d40-973f-3864ac475e1f","name":"H&M","description":"The H&M group is one of the world?��s leading fashion companies ?�� with the brands H&M and H&M Home, COS, & Other Stories, Monki, Weekday Cheap Monday and ARKET.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC59_1_H&M_New_Image.jpg","dominantColorCode":"#ededed","externalId":"AC59","image":"https://media.go2speed.org/brand/files/dcm/158/800px-H&M-Logo.svg.png","url":"https://ae.hm.com/en/","tasteMatchScore":72},"offers":[{"id":"1345","name":"Get upto 10% cashback on H&M","description":"Get upto 10% cashback on H&M\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/405/adv_hm_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=405&aff_id=68962"}}],"tags":["other-styles","jackets-and-blazers","outerwear","sleep-wear","daily-clothing","fashion-jewellery","loungewear","footwear-store","swim-and-beach-wear","dresses","cardigans","jeans","accessories-store","jewellery-store","maternity-wear","coats","plus-size","clothing-store","inner-wear-and-lingerie","regular-retail-store","basic-service","winter-wear","modern","sandals","men-women-children-shoes","online-and-in-store","others","large-product-range","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"634ea784-f4a6-4d02-8cda-0374e53823d6","name":"Newchic","description":"Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg","dominantColorCode":"#f0f0f0","externalId":"AD58","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","url":"http://www.newchic.com/","tasteMatchScore":72},"offers":[{"id":"19886","name":"Get exclusive offers on Newchic","description":"Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-12-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":12.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"AMTDM20","termsAndConditions":["1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3"}}],"tags":["regular-retail-store","home-and-kitchen","online","home-furnishings","apparel-and-accessories","international","pet-supplies","accessories-store","pet-and-pet-supplies","footwear-store","delivery-service","basic-service"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"0eb0da82-d526-4b58-8a69-713451de1114","name":"American Eagle","description":"American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg","dominantColorCode":"#e6e6e6","externalId":"AC11","image":"https://media.go2speed.org/brand/files/dcm/1349/download (3).png","url":"https://www.americaneagle.com.sa/en/","tasteMatchScore":72},"offers":[{"id":"1367","name":"Get upto 14% cashback on American Eagle","description":"Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":14.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962"}}],"tags":["basic-service","regular-retail-store","winter-wear","formal-wear","men-and-women's-shoes","jackets-and-blazers","outerwear","men-and-women's-clothing","sandals","modern","daily-clothing","sunglasses","online-and-in-store","sweaters","footwear-store","large-product-range","flipflops","dresses","occasional-clothing","accessories-store","coats","casual-wear","casual-shoes","clothing-store","shirts","western-clothing","t-shirts"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"3ebc8f6a-9fda-45d9-b52f-5e853be3fd39","name":"Boutiquefeel","description":"Shop Sexy Trending Dresses – Boutiquefeel offers the best women's fashion Dresses deals.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD13_1_Boutiquefeel_New_Image.jpg","dominantColorCode":"#eeeef1","externalId":"AD13","image":"http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png","url":"http://www.boutiquefeel.com/","tasteMatchScore":70},"offers":[{"id":"20483","name":"Get upto 10% cashback on Boutiquefeel","description":"Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-12-28T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://ad.admitad.com/g/xeoj03ka0qd19318053638a0bfaa27/?i=3"}}],"tags":["jackets-and-blazers","daily-clothing","party-wear","footwear-store","swim-and-beach-wear","online","international","women's-shoes","women's-clothing","heels","dresses","jeans","clothing-store","inner-wear-and-lingerie","regular-retail-store","basic-service","winter-wear","flats","sandals","sweaters","large-product-range","suits","pants","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","shirts","boots"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"3a209733-ca5c-3df0-a894-22ad4dc72aee","name":"Ivrose","description":"Shop IVRose - Women's Shop IVRose - Women's Online Shopping Offering Huge Discounts on Dresses, Lingerie , Jumpsuits , Swimwear, Tops and More.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD39_1_Ivrose_New_Image.jpg","dominantColorCode":"#b3dee4","externalId":"AD39","image":"http://cdn.admitad.com/campaign/images/2020/9/30/18430-a685a2ffdc9b74f0.png","url":"http://www.ivrose.com/","tasteMatchScore":70},"offers":[{"id":"6242","name":"Get upto 10% cashback on Ivrose","description":"Get upto 10% cashback on Ivrose\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-01-28T00:00:00.389Z","validTo":"2023-03-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":10.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/18430-a685a2ffdc9b74f0.png","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2022-03-31\n2. The offer is valid for , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://ad.admitad.com/g/m0fa6csp6td1931805367623aa25b3/?i=3"}}],"tags":["women's-clothing","party-wear","sandals","clothing-store","thermal-wear","accessories-store","uniforms-and-work-wear","jeans","winter-wear","t-shirts","footwear-store","regular-retail-store","women's-shoes","casual-shoes","international","specialty-wear","boots","occasional-clothing","basic-service","large-product-range","sweaters","coats","daily-clothing","rings","shirts","casual-wear","sleep-wear","dresses","necklaces","sneakers","flats","jackets-and-blazers","inner-wear-and-lingerie","online","jewellery-store","active-and-sports-wear","fashion-jewellery"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"2e60109d-e243-4b4e-be0b-603ed2ee2965","name":"Fila","description":"Iconic Everywhere. Shop the latest selection of official FILA sportswear, sneakers, apparel, accessories and more.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC432_1_Fila_New_Image.jpg","dominantColorCode":"#f5f5f5","externalId":"AC432","image":"https://media.go2speed.org/brand/files/arabclicks/931/adv_fila_icon.jpg","url":"https://fila.ae/","tasteMatchScore":70},"offers":[{"id":"2111","name":"Get upto 15% discount on Fila","description":"Get upto 15% discount on Fila\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel , Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/FILA%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel , Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://fila.ae/"}}],"tags":["sports-shoes","jackets-and-blazers","outerwear","daily-clothing","footwear-store","minimalistic","international","accessories-store","clothing-store","satchels-and-shoulder-bags","sneakers","t-shirts","basic-service","regular-retail-store","winter-wear","modern","men-women-children-shoes","backpacks","totes","others","online-and-in-store","large-product-range","bags-and-wallets","pants","hair-accessories","casual-wear","active-and-sports-wear","men-women-children-clothing","western-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"ed011938-5c4a-4963-97de-8eebb80e28b4","name":"Gap","description":"Gap was founded in 1969 with a simple idea ?�� make it easier to find a pair of jeans that fit with a commitment to do more. Our initial commitment to do more has grown into a global ambition to champion equality, inclusivity and sustainability.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC53_1_Gap_New_Image.jpg","dominantColorCode":"#ededed","externalId":"AC53","image":"https://media.go2speed.org/brand/files/arabclicks/645/adv_gap_icon (1).jpg","url":"https://www.gap.ae/","tasteMatchScore":70},"offers":[{"id":"274","name":"Get upto 7% cashback on Gap","description":"Get upto 7% cashback on Gap\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":7.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/645/adv_gap_icon (1).jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=645&aff_id=68962"}}],"tags":["basic-service","winter-wear","girl's-clothing","other-styles","boy's-clothing","outerwear","men-and-women's-clothing","modern","daily-clothing","infant's-clothing","sweaters","swim-and-beach-wear","large-product-range","international","dresses","pants","occasional-clothing","jeans","casual-wear","clothing-store","active-and-sports-wear","shirts","western-clothing","regular-retail-store"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"63a2a04a-376e-4b2c-a0e7-b10e276a3b4e","name":"Berrylook","description":"Find latest women's clothing, dresses, tops, outerwear, and other fashion clothing and enjoy the worldwide shipping at BerryLook.com.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD9_1_Berrylook_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD9","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20138-f0987eafaaba653d.png","url":"https://www.berrylook.com/","tasteMatchScore":70},"offers":[{"id":"4178","name":"Get exclusive offers on Berrylook","description":"Get exclusive offers on Berrylook\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-01-25T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":9.2,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/9/30/20138-f0987eafaaba653d.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_flat","redemptionCode":"SAVE-$12","termsAndConditions":["1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://ad.admitad.com/g/5xtwqvy7udd19318053664f10e1b76/?i=3"}}],"tags":["necklaces","scarfs-and-shawls","wallets","jackets-and-blazers","outerwear","casual-bags","daily-clothing","fashion-jewellery","leather","footwear-store","online","international","dresses","jewellery-store","accessories-store","jeans","briefcase","coats","clothing-store","satchels-and-shoulder-bags","inner-wear-and-lingerie","sneakers","regular-retail-store","t-shirts","basic-service","winter-wear","flats","men-and-women's-shoes","men-and-women's-clothing","sandals","rings","sweaters","large-product-range","bags-and-wallets","pants","casual-wear","casual-shoes","loafers","boots"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"6729a838-c5ad-3bbf-a0f4-db986a466769","name":"Fairyseason","description":"Welcome to Fairyseason.com, a professional online shopping website where you will find tops, dresses, pants, swimwear, shoes and more! Our commitment is to provide a variety of high-quality fashion apparel at amazing factory direct prices and provide first-class customer service experience to our global customers.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD28_1_Fairyseason_New_Image.jpg","dominantColorCode":"#ededeb","externalId":"AD28","image":"http://cdn.admitad.com/campaign/images/2020/9/30/19857-7c6d80031f86e978.jpeg","url":"http://www.fairyseason.com/","tasteMatchScore":70},"offers":[{"id":"1535","name":"Get upto 13% cashback on Fairyseason","description":"Get upto 13% cashback on Fairyseason\n1. The offer is valid upto 2022-07-31\n2. The offer is valid for Accessories & Bags, only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2020-12-10T00:00:00.389Z","validTo":"2023-07-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":13.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"http://cdn.admitad.com/campaign/images/2020/9/30/19857-7c6d80031f86e978.jpeg","offerSource":"Admitad","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2022-07-31\n2. The offer is valid for Accessories & Bags, only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://ad.admitad.com/g/d1jqev42qod19318053675691508b5/?i=3"}}],"tags":["flats","online","large-product-range","hair-accessories","basic-service","sandals","boots","jewellery-store","clothing-store","swim-and-beach-wear","heels","bracelets","others","t-shirts","casual-shoes","dresses","daily-clothing","flipflops","wholesale-store","women's-shoes","fashion-jewellery","women's-clothing","occasional-clothing","jackets-and-blazers","coats","accessories-store","necklaces","casual-wear","regular-retail-store","western-clothing","footwear-store","modern","rings","active-and-sports-wear","shirts","winter-wear","outerwear","minimalistic"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"47bf1663-a2e5-4156-afaa-d80cd1d4d8fb","name":"Namshi","description":"Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg","dominantColorCode":"#bfe2f6","externalId":"AC90","image":"https://media.go2speed.org/brand/files/dcm/1276/namshi.png","url":"https://en-ae.namshi.com/","tasteMatchScore":78},"offers":[{"id":"1682","name":"Get upto 15% discount on Namshi","description":"Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-02-14T00:00:00.389Z","validTo":"2023-02-14T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ac143","termsAndConditions":["1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"http://www.namshi.com/"}}],"tags":["jackets-and-blazers","outerwear","daily-clothing","fashion-jewellery","party-wear","footwear-store","swim-and-beach-wear","accessories-store","coats","clothing-store","inner-wear-and-lingerie","sneakers","basic-service","regular-retail-store","t-shirts","formal-wear","watch-store","modern","sandals","men-women-children-shoes","sunglasses","online-and-in-store","sweaters","formal-shoes","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","western-clothing","boots","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"0e105a12-1c52-4be7-ba47-3764397bfcf5","name":"The Luxury Closet","description":"Shop New & Pre-Loved Authentic Designer Bags. $50 off first order. Free Shipping Worldwide.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC53_1_The_Luxury_Closet_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"DC53","image":"https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg","url":"https://theluxurycloset.com/","tasteMatchScore":70},"offers":[{"id":"821","name":"Get upto 3% cashback on The Luxury Closet","description":"Get upto 3% cashback on The Luxury Closet\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":3.0,"currency":"","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg","offerSource":"DCM","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.urtrackinglink.com/aff_c?offer_id=318&aff_id=23876"}}],"tags":["necklaces","scarfs-and-shawls","wallets","jackets-and-blazers","casual-bags","fashion-jewellery","daily-clothing","thermal-wear","footwear-store","online","jewellery-store","jeans","gold","accessories-store","coats","clothing-store","satchels-and-shoulder-bags","sneakers","basic-service","regular-retail-store","t-shirts","winter-wear","flats","men-and-women's-shoes","bracelets","fine-jewellery","men-and-women's-clothing","backpacks","sunglasses","rings","totes","sweaters","clutches","large-product-range","suits","bags-and-wallets","pants","belts","casual-wear","casual-shoes","loafers","shirts","boots"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"95519a75-e922-37c5-ba24-18c9202d1a38","name":"Bellelily","description":"Welcome to Bellelily.com, a one-stop online shop featuring the latest in women's fashion, home decor and more. Our commitment is to provide a wide range of high quality affordable collections along with a class-leading customer service experience to our customers.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD7_3_Bellelily_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD7","image":"http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png","url":"https://www.bellelily.com/","tasteMatchScore":70},"offers":[{"id":"9191","name":"Get exclusive offers on Bellelily","description":"Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2022-02-01T00:00:00.389Z","validTo":"2023-02-28T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":13.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"LOVE","termsAndConditions":["1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://ad.admitad.com/g/bziamb92n9d1931805360ab011a33f/?i=3"}}],"tags":["flats","online","large-product-range","casual-bags","hair-accessories","bags-and-wallets","cardigans","basic-service","boots","jewellery-store","men-and-women's-clothing","belts","clothing-store","swim-and-beach-wear","heels","bracelets","others","t-shirts","plus-size","casual-shoes","dresses","daily-clothing","flipflops","inner-wear-and-lingerie","scarfs-and-shawls","jeans","women's-shoes","fashion-jewellery","sunglasses","jackets-and-blazers","loafers","accessories-store","necklaces","totes","casual-wear","regular-retail-store","sweaters","pants","western-clothing","footwear-store","modern","rings","active-and-sports-wear","shirts","winter-wear","outerwear","sneakers","minimalistic"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"534698a3-3c38-3870-b880-90b93bb45dee","name":"Bellewholesale","description":"Bellewholesale is a B2B and B2C platform for brands, retailers, individual buyers and wholesalers from the fashion industry. We have been supplying Wholesale Women’s Clothing for 8 years, and mainly focus on women's apparels, shoes and other fashion items, our products are selling very well in global market such as America, Europe, Australia,Japan, South America, South Africa, southeast Asia,south Korea along with other consumer markets. Our business covers more than 200 countries and regions around the world, we have the rich knowledge and resources to supply retailers, e-tailers and independents with quality products that represent great value for money.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AD8_1_Bellewholesale_New_Image.jpg","dominantColorCode":"#ffffff","externalId":"AD8","image":"http://cdn.admitad.com/campaign/images/2021/1/14/24183-143a937935ab6d01.png","url":"https://www.bellewholesale.com/","tasteMatchScore":70},"offers":[{"id":"5901","name":"Get exclusive offers on Bellewholesale","description":"Get exclusive offers on Bellewholesale\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.","validFrom":"2021-09-06T00:00:00.389Z","validTo":"2023-04-30T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":6.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card","image":"http://cdn.admitad.com/campaign/images/2021/1/14/24183-143a937935ab6d01.png","offerSource":"Admitad","offerStatus":"active","offerType":"online coupon","payoutType":"cpa_percentage","redemptionCode":"НЕ НУЖЕН","termsAndConditions":["1. The offer is valid upto 2022-04-30\n2. The offer is valid for , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."],"url":"https://ad.admitad.com/g/sqlyj7tk7kd193180536d373e4227f/?i=3"}}],"tags":["flats","local","large-product-range","hair-accessories","formal-wear","basic-service","sandals","specialty-wear","men-and-women's-clothing","clothing-store","swim-and-beach-wear","loungewear","heels","others","t-shirts","casual-shoes","dresses","online-and-in-store","daily-clothing","pumps","party-wear","flipflops","inner-wear-and-lingerie","jeans","wholesale-store","women's-shoes","running-apparel","occasional-clothing","accessories-store","casual-wear","regular-retail-store","pants","western-clothing","footwear-store","modern","active-and-sports-wear","sleep-wear","sneakers","gym-wear","minimalistic"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"e968a691-b274-3bfe-b29e-472b79697fe9","name":"Lacoste","description":"Lacoste is a French clothing company founded in 1933 that sells high-end clothing, footwear, perfume, leather goods, watches","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC315_1_Lacoste_New_Image.jpg","dominantColorCode":"#d2d2d2","externalId":"AC315","image":"https://media.go2speed.org/brand/files/arabclicks/933/adv_lacoste_icon.jpg","url":"https://www.lacoste.com/ae/en/","tasteMatchScore":70},"offers":[{"id":"2112","name":"Get upto 10% discount on Lacoste","description":"Get upto 10% discount on Lacoste\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel , Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/LACOSTE%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_percentage","redemptionCode":"ADIB","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel , Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://www.lacoste.com/ae/en/"}}],"tags":["others","daily-clothing","bags-and-wallets","hair-accessories","footwear-store","casual-wear","sneakers","international","wallets","dresses","pants","outerwear","men-women-children-shoes","casual-shoes","infant's-clothing","sweaters","satchels-and-shoulder-bags","men-women-children-clothing","large-product-range","active-and-sports-wear","flipflops","accessories-store","belts","western-clothing","modern","swim-and-beach-wear","backpacks","online-and-in-store","sandals","watch-store","totes","fashion-watches","jackets-and-blazers","casual-bags","t-shirts","rubber-shoes","basic-service","loafers","clothing-store","flats","occasional-clothing","coats","regular-retail-store","winter-wear","canvas-shoes"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"ebf22cb5-7dbf-44db-a2a7-1b9f3c082879","name":"Ontime","description":"Shop Trendy Stylish Designer Watches, Jewelry, Handbags online at Ontime.com for Men, Women and Kids at great price","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/DC44_1_Ontime_New_Image.jpg","dominantColorCode":"#0c0c0c","externalId":"DC44","image":"https://media.go2speed.org/brand/files/arabclicks/807/adv_ontime_icon.jpg","url":"https://www.ontime.com","tasteMatchScore":70},"offers":[{"id":"1502","name":"Get upto 15USD discount on Ontime","description":"Get upto 15USD discount on Ontime\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":0.0,"currency":"USD","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","image":"https://dpimages.crayondata.com/high-res-image/adib/ontime%20Image%20File210x250.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"offline coupon","payoutType":"cpa_flat","redemptionCode":"AB121","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"],"url":"https://www.ontime.com/ae/en/"}}],"tags":["necklaces","wallets","jackets-and-blazers","casual-bags","fashion-jewellery","daily-clothing","thermal-wear","footwear-store","online","flipflops","international","jewellery-store","accessories-store","smart-watches","clothing-store","satchels-and-shoulder-bags","sneakers","t-shirts","regular-retail-store","basic-service","winter-wear","watch-store","bracelets","sandals","men-women-children-shoes","backpacks","rings","sweaters","clutches","large-product-range","bags-and-wallets","luxury-watches","casual-wear","casual-shoes","loafers","shirts","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"55d0c09c-8838-4b63-9651-70b2bb1baa15","name":"Farfetch","description":"FARFETCH exists for the love of fashion. We believe in empowering individuality.","category":"apparel and accessories","active":true,"properties":{"image":"https://media.go2speed.org/brand/files/arabclicks/36/adv_farfetch_icon.jpg","dominantColorCode":"#e1dada","externalId":"AC43","curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC43_1_Farfetch_New_Image.jpg","url":"https://www.farfetch.com","tasteMatchScore":70},"offers":[{"id":"7116","name":"Get upto 10% discount on Farfetch","description":"Get upto 10% discount on Farfetch\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY","validFrom":"2021-05-01T00:00:00.389Z","validTo":"2023-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"redemptionCode":"ADIBSD10","image":"https://dpimages.crayondata.com/high-res-image/adib/FF_Picture11.jpg","offerType":"offline coupon","payoutType":"cpa_percentage","offerSource":"partnerize","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.","currency":"USD","cashbackValue":0.0,"offerStatus":"active","url":"https://www.farfetch.com/ae/","termsAndConditions":["1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"]}}],"tags":["necklaces","scarfs-and-shawls","wallets","gym-wear","jackets-and-blazers","sleep-wear","fashion-jewellery","daily-clothing","thermal-wear","footwear-store","swim-and-beach-wear","online","flipflops","international","jewellery-store","accessories-store","coats","clothing-store","satchels-and-shoulder-bags","inner-wear-and-lingerie","sneakers","regular-retail-store","t-shirts","basic-service","winter-wear","watch-store","bracelets","fine-jewellery","sandals","fashion-watches","backpacks","sunglasses","rings","totes","sweaters","clutches","large-product-range","bags-and-wallets","suits","formal-shoes","belts","casual-wear","casual-shoes","loafers","active-and-sports-wear","shirts","men-women-children-clothing","boots"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false},{"item":{"id":"f161cacd-e6c9-4640-86e1-8293d69ca19d","name":"Mr Porter","description":"MR PORTER is the award-winning online retail destination for men's style, combining the best international menswear with expert advice and inspirational content.","category":"apparel and accessories","active":true,"properties":{"curatedImage":"https://dpimages.crayondata.com/high-res-image/resized/offer/AC87_1_Mr_Porter_New_Image.jpg","dominantColorCode":"#efefef","externalId":"AC87","image":"https://media.go2speed.org/brand/files/arabclicks/232/adv_mrporter_icon.jpg","url":"http://mrporter.com","tasteMatchScore":70},"offers":[{"id":"1344","name":"Get upto 5% cashback on Mr Porter","description":"Get upto 5% cashback on Mr Porter\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY","validFrom":"2022-02-07T00:00:00.389Z","validTo":"2024-12-31T23:59:59.389Z","partner":true,"isOnline":true,"offerActive":true,"properties":{"cashbackValue":5.0,"currency":"GBP","howToRedeem":"1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.","image":"https://media.go2speed.org/brand/files/arabclicks/232/adv_mrporter_icon.jpg","offerSource":"arabclicks","offerStatus":"active","offerType":"cashback","payoutType":"cpa_percentage","termsAndConditions":["1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website – Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"],"url":"https://go.arabclicks.com/aff_c?offer_id=232&aff_id=68962"}}],"tags":["outerwear","daily-clothing","fashion-jewellery","party-wear","footwear-store","swim-and-beach-wear","dresses","jewellery-store","accessories-store","coats","clothing-store","inner-wear-and-lingerie","sneakers","regular-retail-store","basic-service","formal-wear","watch-store","modern","sandals","men-women-children-shoes","fashion-watches","online-and-in-store","others","large-product-range","bags-and-wallets","formal-shoes","occasional-clothing","casual-wear","casual-shoes","active-and-sports-wear","western-clothing","boots","men-women-children-clothing"],"cities":["all"],"isOnline":true,"merchantType":["online"],"isHyperLocal":false},"liked":false,"wishlisted":false}],"filters":{"Offer Type":["Coupon","CashBack"],"Merchant Type":["Online"]}}
213
Then status 200
0
214
Then print response
31
20:57:07.105 [print] {
"items": [
{
"item": {
"id": "4248f84c-bbca-425c-b193-211ca80dff51",
"name": "Aliexpress",
"description": "Think how jealous you�re friends will be when you tell them you got your uae on AliExpress. With the lowest prices online, cheap shipping rates and local collection options, you can make an even bigger saving.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC7_Aliexpress_New_Offer.jpg",
"dominantColorCode": "#ced1d8",
"externalId": "AC7",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"url": "https://ar.aliexpress.com/",
"tasteMatchScore": 74
},
"offers": [
{
"id": "1357",
"name": "Get upto 9% cashback on Aliexpress",
"description": "Get upto 9% cashback on Aliexpress\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/9/adv_aliexpress_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=9&aff_id=68962"
}
}
],
"tags": [
"kitchen-appliances",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"sports-and-outdoors",
"department-store",
"online",
"apparel-and-accessories",
"games",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": true
},
{
"item": {
"id": "2ab7390e-377f-46ab-ac70-b6bbdb00df19",
"name": "Desert Cart",
"description": "Shop online for Electronics, Fashion, Home & Kitchen, Beauty & Grooming, Health, Toys, Baby, Books, Sports, etc. on desertcart",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC19_1_Desert_Cart_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC19",
"image": "https://media.go2speed.org/brand/files/dcm/1273/logo.5821c90d.png",
"url": "https://desertcart.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "827",
"name": "Get exclusive offers on Desert Cart",
"description": "Get exclusive offers on Desert Cart\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Sports only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.7,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1273/logo.5821c90d.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Sports only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1273&aff_id=23876"
}
}
],
"tags": [
"regular-retail-store",
"perfumery",
"kitchen-appliances",
"automobile-and-accessories",
"video-games",
"furniture",
"cameras-and-accessories",
"health-and-beauty",
"multi-brand",
"toys-and-games",
"computer-and-accessories",
"toys",
"home-and-kitchen",
"large-product-range",
"online",
"international",
"kids-utilities",
"kitchen-accessories",
"apparel-and-accessories",
"books-and-music",
"mobile-phones",
"cosmetics-and-skincare",
"books",
"computer-and-electronics",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "3dc4ffce-0181-4ddd-a31d-353ace24bc39",
"name": "Eyewa",
"description": "eyewa is the #1 Most Trusted Online Eyewear Store. Shop Contact Lenses, Designer Sunglasses and Eyeglasses at Best Prices in USA.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC23_1_Eyewa_New_Image.jpg",
"dominantColorCode": "#eae9ee",
"externalId": "DC23",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"url": "https://eyewa.com/ae-en/",
"tasteMatchScore": 78
},
"offers": [
{
"id": "849",
"name": "Get exclusive offers on Eyewa",
"description": "Get exclusive offers on Eyewa\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1235/eyewa-logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Fashion & Accessories only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1235&aff_id=23876"
}
}
],
"tags": [
"basic-service",
"large-product-range",
"online",
"opticals",
"health-and-beauty",
"multi-brand",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "4abb1354-aa06-34cc-a2d7-2ce589fc4b30",
"name": "Cartlow",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC365_1_Cartlow_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC365",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Cartlow_Logo.png",
"url": "https://cartlow.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2101",
"name": "Get upto 10USD discount on Cartlow",
"description": "Get upto 10USD discount on Cartlow\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Electronics,Grocery, Accessories,Toys,Video Games, Home Appliances only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Ecommerce_1.jpeg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "DC141",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Electronics,Grocery, Accessories,Toys,Video Games, Home Appliances only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://cartlow.com/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "25fa539a-399b-3870-beab-e56d222408fa",
"name": "Prolon",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2282_1_Prolon_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC2282",
"image": "https://media.go2speed.org/brand/files/arabclicks/1005/adv_prolon_icon.jpg",
"url": "https://prolon.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6874",
"name": "Get upto 8% cashback on Prolon",
"description": "Get upto 8% cashback on Prolon\n1. The offer is valid upto 2023-06-27\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-06-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/1005/adv_prolon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-06-27\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=1005&aff_id=68962"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "c6a9fa99-fd06-34e8-80b8-920417ab220c",
"name": "Rituals",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC1256_1_Rituals_New_Image.jpg",
"dominantColorCode": "#FDCEC6",
"externalId": "AC1256",
"image": "https://media.go2speed.org/brand/files/arabclicks/954/adv_rituals_icon.jpg",
"url": "https://en-ae.rituals.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2103",
"name": "Get upto 10% discount on Rituals",
"description": "Get upto 10% discount on Rituals\n1. The offer is valid upto 2022-03-11\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-03-11T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/rituals%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AC18",
"termsAndConditions": [
"1. The offer is valid upto 2022-03-11\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://en-ae.rituals.com/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "03911f54-60da-33e2-85ec-4b286e3ff989",
"name": "Searush",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD2056_1_Searush_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AD2056",
"image": "https://dpimages.crayondata.com/high-res-image/adib/searush_logo.png",
"url": "https://searush.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "7115",
"name": "Get upto 7% discount on Searush",
"description": "Get upto 7% discount on Searush\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Sports Apparel, Sports Accessories, Sports Equipment only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Shoes%201.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Sports Apparel, Sports Accessories, Sports Equipment only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://searush.ae/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "8055e02a-b761-39b3-b0b2-9eb1058b2738",
"name": "2071mall",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2308_1_2071mall_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC2308",
"image": "https://media.go2speed.org/brand/files/arabclicks/850/adv_2071mall_icon.jpg",
"url": "https://www.2071mall.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "7111",
"name": "Get upto 15AED discount on 2071mall",
"description": "Get upto 15AED discount on 2071mall\n1. The offer is valid upto 2022-10-31\n2. The offer is valid for Apparel & Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-10-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/E%20Commerce%202.jpg210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "AC935",
"termsAndConditions": [
"1. The offer is valid upto 2022-10-31\n2. The offer is valid for Apparel & Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://www.2071mall.com/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "f55d8615-662c-4ded-90bb-24103b60f35a",
"name": "Geekbuying",
"description": "Online shopping with GeekBuying is very easy as you get to shop from the comfort of your home and get products delivered at your doorstep",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC56_1_Geekbuying_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC56",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15467-1a74deca61fb1584.jpeg",
"url": "http://www.geekbuying.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "14086",
"name": "Get exclusive offers on Geekbuying",
"description": "Get exclusive offers on Geekbuying\n1. The offer is valid upto 2022-11-10\n2. The offer is valid for , Sports & Recreation only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-11-11T00:00:00.389Z",
"validTo": "2023-11-10T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.6,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15467-1a74deca61fb1584.jpeg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"redemptionCode": "GKBA1GU",
"termsAndConditions": [
"1. The offer is valid upto 2022-11-10\n2. The offer is valid for , Sports & Recreation only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://ad.admitad.com/g/x3ayoxoiyxd1931805360267b86f6e/?i=3"
}
}
],
"tags": [
"automobile-and-accessories",
"multi-brand",
"sporting-equipment",
"footwear-store",
"toys-and-games",
"computer-and-accessories",
"toys",
"home-appliances",
"large-product-range",
"online",
"sports-and-outdoors",
"department-store",
"apparel-and-accessories",
"international",
"accessories-store",
"mobile-phones",
"computer-and-electronics",
"clothing-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "ceeee1ea-e0ee-4b7e-844c-5b14c954c9bf",
"name": "Ourshopee",
"description": "Ourshopee.com is one of the leading and fast-growing virtual shopping website with strong presence in UAE, Oman, Qatar, Bahrain and Kuwait.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC106_1_Ourshopee_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC106",
"image": "https://media.go2speed.org/brand/files/arabclicks/733/adv_ourshopee_icon.jpg",
"url": "https://www.ourshopee.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1352",
"name": "Get upto 5.1AED cashback on Ourshopee",
"description": "Get upto 5.1AED cashback on Ourshopee\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, Books & Education, TV & Electronics, Mobiles, Tablets & Computers, Grocery & Food, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/733/adv_ourshopee_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, Books & Education, TV & Electronics, Mobiles, Tablets & Computers, Grocery & Food, Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=733&aff_id=68962"
}
}
],
"tags": [
"shoes-and-accessories-store",
"kitchen-appliances",
"home-improvement-supplies",
"food-beverages-and-groceries",
"home-audio-and-accessories",
"multi-brand",
"standalone-store",
"online-and-in-store",
"computer-and-accessories",
"department-store",
"home-appliances",
"large-product-range",
"home-and-kitchen",
"apparel-and-accessories",
"kitchen-accessories",
"mobile-phones",
"bread-and-baked-goods",
"computer-and-electronics",
"tools-and-home-improvement",
"groceries",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "7eb58a5a-9110-49cd-9e41-d15bc99439c2",
"name": "Mothercare",
"description": "The Mothercare brand is synonymous with children and parenting. it carries with it a reputation for specialism, quality, safety and innovation in providing products and services for mothers, mothers-to-be, babies and young children",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC86_1_Mothercare_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC86",
"image": "https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg",
"url": "https://www.mothercare.ae/en/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "892",
"name": "Get upto 10% cashback on Mothercare",
"description": "Get upto 10% cashback on Mothercare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/403/adv_mothercare_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=403&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"basic-service",
"apparel-and-accessories",
"kids-utilities",
"standalone-store",
"clothing-store",
"online-and-in-store",
"toys-and-games",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "ecc0c71f-d8f9-471f-84b9-60ec90b3c38b",
"name": "Mamas & Papas",
"description": "Mamas & Papas offer the best quality in prams, pushchairs, car seats, nursery furniture, baby clothing and toys & gifts. Understanding parent and baby.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC81_1_Mamas_&_Papas_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC81",
"image": "https://media.go2speed.org/brand/files/arabclicks/655/adv_mamasandpapas_icon (1).jpg",
"url": "https://ar.mamasandpapas.ae",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2115",
"name": "Get upto 15% discount on Mamas & Papas",
"description": "Get upto 15% discount on Mamas & Papas\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/MAMAS%20&%20PAPAS%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": [
"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Baby Apparel , Baby Accessories, Toys, Baby Gear only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://mamasandpapas.ae/"
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"apparel-and-accessories",
"international",
"kids-utilities",
"gifts-and-souvenirs",
"health-and-beauty",
"multi-brand",
"standalone-store",
"online-and-in-store",
"toys-and-games",
"nutritional-supplements",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "4f285595-f775-466b-8e3f-8f965a9d46a9",
"name": "G2a",
"description": "Enjoy the vast offer of Steam, Origin, Uplay, Battle.net, GOG, PSN and XBOX CD-Keys at the most attractive prices on the market.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC52_1_G2a_New_Image.jpg",
"dominantColorCode": "#31c4f7",
"externalId": "AC52",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"url": "https://www.g2a.com/",
"tasteMatchScore": 82
},
"offers": [
{
"id": "1372",
"name": "Get upto 4% cashback on G2a",
"description": "Get upto 4% cashback on G2a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/628/adv_g2a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gaming & Sweepstakes only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=628&aff_id=68962"
}
}
],
"tags": [
"home-appliances",
"regular-retail-store",
"video-games",
"games",
"cameras-and-accessories",
"home-audio-and-accessories",
"computer-and-electronics",
"online-and-in-store",
"others",
"toys-and-games",
"computer-and-accessories",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": true
},
{
"item": {
"id": "8bb2ffed-ac48-4b2a-86f3-d3c03dd84a11",
"name": "Anotah",
"description": "Discover the new Anotah Fashion Online. The latest trends for Woman, Top Girls, Kids.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC560_1_Anotah_New_Image.jpg",
"dominantColorCode": "#cfced4",
"externalId": "AC560",
"image": "https://media.go2speed.org/brand/files/arabclicks/835/adv_anotah_icon.jpg",
"url": "http://www.anotah.com",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1637",
"name": "Get upto 10% discount on Anotah",
"description": "Get upto 10% discount on Anotah\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Women's Apparel, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "KWD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Anotah%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AC63",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Women's Apparel, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://www.anotah.com/"
}
}
],
"tags": [
"basic-service",
"large-product-range",
"perfumery",
"apparel-and-accessories",
"international",
"shopping-mall",
"health-and-beauty",
"cosmetics-and-skincare",
"multi-brand",
"personal-care",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "03ed2583-2777-491c-a880-7375f9aa2093",
"name": "Faces",
"description": "Faces is the leading beauty omni-retailer with the latest fragrance, skincare, bath and body, makeup, haircare, and accessories in the region.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC42_1_Faces_New_Image.jpg",
"dominantColorCode": "#e6ded4",
"externalId": "AC42",
"image": "https://media.go2speed.org/brand/files/arabclicks/678/adv_faces_icon.jpg",
"url": "https://www.faces.com/sa-en",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1384",
"name": "Get exclusive offers on Faces",
"description": "Get exclusive offers on Faces\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/678/adv_faces_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=678&aff_id=68962"
}
}
],
"tags": [
"specialty-store",
"online",
"perfumery",
"gifts-and-souvenirs",
"health-and-beauty",
"cosmetics-and-skincare",
"personal-care",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "3e4da0e5-cf30-365b-8d75-e363515c8113",
"name": "Waaaw",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2289_1_Waaaw_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC2289",
"image": "https://media.go2speed.org/brand/files/arabclicks/1010/adv_waaaw_icon.jpg",
"url": "https://www.waaaw.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6876",
"name": "Get exclusive offers on Waaaw",
"description": "Get exclusive offers on Waaaw\n1. The offer is valid upto 2022-07-06\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2023-07-06T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/1010/adv_waaaw_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2022-07-06\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=1010&aff_id=68962"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "7d68781d-ccdf-305a-90c5-8e85e9147c09",
"name": "Samma3a",
"description": "We are a group of highly motivated, music enthusiasts and sound quality lovers, we all have 10 to 15 years of professional working experience and wanted to start a business about what we loved, taking into consideration the fast and huge growth of the headphones market in this region. This is how the idea of the website started, we aimed to offer the online shoppers a unique experience to satisfy the demand for the right quality earphones/headphones and their related matched quality accessories. For many years, many of our friends and acquaintances were asking us for advice about how to buy audio equipments. We were their reference. And here, at samma3a.com, we wanted to relay our experience to you, and share the passion, knowledge in an interactive, simple, and enjoyable way. We would love to help the new and confused users to buy the best option, we want to simplify choosing the correct product while enhancing the music experience for the mobile users\u2026 and remember, it\u2019s not just about giving the options for you to choose from or providing a long technical complicated lists of specifications, it\u2019s about what suits each listener for her/his know - maybe unknown- needs.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC365_1_Samma3a_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC365",
"image": "https://media.go2speed.org/brand/files/arabclicks/804/adv_samma3a_icon.jpg",
"url": "https://www.samma3a.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1358",
"name": "Get exclusive offers on Samma3a",
"description": "Get exclusive offers on Samma3a\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for TV & Electronics, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/804/adv_samma3a_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for TV & Electronics, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=804&aff_id=68962"
}
}
],
"tags": [
"multi-brand",
"home-audio-and-accessories",
"computer-and-accessories",
"books-and-music",
"other-products",
"large-product-range",
"regular-retail-store",
"cameras-and-accessories",
"online-and-in-store",
"computer-and-electronics",
"accessories-store",
"international",
"delivery-service",
"basic-service",
"musical-instrument"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "19f2f40d-690d-398d-9cd2-9a35929b2b24",
"name": "Beauti",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2266_1_Beauti_New_Image.jpg",
"dominantColorCode": "#d9ecd9",
"externalId": "AC2266",
"image": "https://media.go2speed.org/brand/files/arabclicks/998/adv_beauti_icon.jpg",
"url": "https://beauti.sa/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6873",
"name": "Get upto 3% cashback on Beauti",
"description": "Get upto 3% cashback on Beauti\n1. The offer is valid upto 2023-06-07\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-06-07T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/998/adv_beauti_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-06-07\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=998&aff_id=68962"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "0b564195-6aff-36a9-b01f-a22956cb1439",
"name": "For Her",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC366_1_For_Her_New_Image.jpg",
"dominantColorCode": "#d8d7da",
"externalId": "DC366",
"image": "https://media.go2speed.org/brand/files/dcm/1371/9784b0b6-0f97-4e58-bdc0-e4ac54148f2a-200x.png",
"url": "https://forher.com.sa/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2107",
"name": "Get upto 10% discount on For Her",
"description": "Get upto 10% discount on For Her\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Beauty%205.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SUM",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://forher.com.sa/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "4bc63579-a6a4-3866-8308-880f3cc42147",
"name": "Ace Hardware",
"description": "Since 1924, ACE has been the world\u2019s local home improvement store committed to delivering quality, friendly and helpful service. Established in Dubai in 1991 by the Al-Futtaim group, ACE now trades across eleven locations in the UAE, including its flagship stores in Dubai Festival City and Yas Island, Abu Dhabi. As part of ACE\u2019s commitment to provide exemplary customer service, and in keeping with global ACE standards, each of our eleven stores are certified as \u2018ACE Helpful\u2019. This means that our customers are sure to find more than just products at ACE - they will find knowledgeable experts who are keen to offer support and keen advice across all categories in-store. All ACE stores in the UAE offer a wide selection of outdoor & garden, DIY & tools, electronics, homeware, electrical & security, car, paints, pets, and kids. With more than 50,000 products, ACE features world-class brands such as Karcher, Wilko, Dyson, Weber and more. ACE also has a popular value range that offers everyday items at competitive prices.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC2_1_Ace_Hardware_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC2",
"image": "https://media.go2speed.org/brand/files/dcm/1283/Ace_Hardware-logo-FFA4EB9678-seeklogo.com.png",
"url": "https://www.aceuae.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "820",
"name": "Get exclusive offers on Ace Hardware",
"description": "Get exclusive offers on Ace Hardware\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Automotive, Electronics only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1283/Ace_Hardware-logo-FFA4EB9678-seeklogo.com.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Automotive, Electronics only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1283&aff_id=23876"
}
}
],
"tags": [
"multi-brand",
"automobile-and-accessories",
"hardware",
"home-audio-and-accessories",
"furniture",
"plant-nursery",
"large-product-range",
"home-appliances",
"regular-retail-store",
"international",
"basic-service",
"sporting-equipment",
"fertilizer",
"kitchen-appliances",
"kitchen-accessories",
"apparel-and-accessories",
"apparel-and-accessories",
"travel-utilities",
"travel-accessories",
"home-and-kitchen",
"tools-and-home-improvement",
"building-supplies",
"online-and-in-store",
"computer-and-electronics",
"accessories-store",
"pet-and-pet-supplies",
"home-improvement-supplies",
"luggage-store",
"delivery-service",
"paint-supplies"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "0f1d91d2-5013-47fb-b148-b5b1189fe4aa",
"name": "Feel Unique",
"description": "Europe's largest online beauty retailer",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC44_1_Feel_Unique_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC44",
"image": "https://media.go2speed.org/brand/files/arabclicks/659/adv_feelunique_icon.jpg",
"url": "https://mena.feelunique.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1386",
"name": "Get exclusive offers on Feel Unique",
"description": "Get exclusive offers on Feel Unique\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/660/adv_feelunique_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "http://go.arabclicks.com/aff_c?offer_id=660&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"online",
"international",
"health-and-beauty",
"cosmetics-and-skincare",
"multi-brand",
"personal-care",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "a92c32e4-0a8d-4c74-8d06-b50d271e6fbf",
"name": "Noon Now Now",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC368_1_Noon_Now_Now_New_Image.jpg",
"dominantColorCode": "#e5c488",
"externalId": "DC368",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"url": "https://www.noonnownow.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2192",
"name": "Get exclusive offers on Noon Now Now",
"description": "Get exclusive offers on Noon Now Now\n1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-05-16T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1299/unnamed.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2040-05-16\n2. The offer is valid for Departmental Store, Health & Wellness only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1299&aff_id=23876"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "93a2245e-25c6-4d82-8699-8aef2b956e97",
"name": "Speero.net",
"description": "Spiro is an electronic platform that provides you with many options related to the spare parts of your car, whether new or used parts The only platform that gives you different prices before purchasing any spare parts, so you can choose between the available options",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC370_1_Speero.net_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC370",
"image": "https://media.go2speed.org/brand/files/arabclicks/887/adv_speero_icon.jpg",
"url": "https://speero.net/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1739",
"name": "Get exclusive offers on Speero.net",
"description": "Get exclusive offers on Speero.net\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Cars & Automotive, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/887/adv_speero_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Cars & Automotive, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=887&aff_id=68962"
}
}
],
"tags": [
"basic-service",
"large-product-range",
"automobile-and-accessories",
"local",
"multi-brand",
"computer-and-electronics",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "84b1f329-4457-456c-8859-d746d3dcb693",
"name": "Noon",
"description": "noon is the Middle East's homegrown online marketplace.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC97_1_Noon_New_Image.jpg",
"dominantColorCode": "#feffff",
"externalId": "AC97",
"image": "https://media.go2speed.org/brand/files/arabclicks/235/adv_noon_icon.jpg",
"url": "https://www.noon.com/egypt-en/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1342",
"name": "Get exclusive offers on Noon",
"description": "Get exclusive offers on Noon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, Books & Education, TV & Electronics, Mobiles, Tablets & Computers, Grocery & Food, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.6,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/235/adv_noon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Baby & Kids, Books & Education, TV & Electronics, Mobiles, Tablets & Computers, Grocery & Food, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=235&aff_id=68962"
}
}
],
"tags": [
"perfumery",
"chocolates",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"cameras-and-accessories",
"multi-brand",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"kids-utilities",
"books-and-music",
"computer-and-electronics",
"confectionery",
"basic-service",
"home-improvement-supplies",
"pet-supplies",
"supermarket",
"furniture",
"home-audio-and-accessories",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"cosmetics-and-skincare",
"books",
"dry-fruits-and-nuts",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "9722ce08-4dde-4055-b766-d15ab6d1e89a",
"name": "Jamalon",
"description": "Jamalon is the largest Arabic store in the Middle East, containing more than 9.5 million Arabic and English books, your book is for your door wherever you are.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC66_1_Jamalon_New_Image.jpg",
"dominantColorCode": "#8c8d8f",
"externalId": "AC66",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"url": "http://www.jamalon.com",
"tasteMatchScore": 76
},
"offers": [
{
"id": "1401",
"name": "Get upto 6% cashback on Jamalon",
"description": "Get upto 6% cashback on Jamalon\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/18/adv_jamalon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=18&aff_id=68962"
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"books-and-music",
"books",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": true
},
{
"item": {
"id": "23f8d6eb-d5fa-3e64-9bda-aabf78c39960",
"name": "Fordeal",
"description": "Incredible online shopping center. Free shipping! Big discounted! Cash on Delivery! 24 hours intimate customer service.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC28_1_Fordeal_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC28",
"image": "http://cdn.admitad.com/campaign/images/2020/12/7/24106-f0d4ce3a0a1296a2.png",
"url": "https://www.fordeal.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "13846",
"name": "Get exclusive offers on Fordeal Up To 15% Off",
"description": "Get exclusive offers on Fordeal Up To 15% Off\n1. The offer is valid upto 2041-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2042-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1372/512.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2041-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1372&aff_id=23876"
}
}
],
"tags": [
"toys-and-games",
"apparel-and-accessories",
"mobile-phones",
"footwear-store",
"home-appliances",
"travel-utilities",
"multi-brand",
"kitchen-appliances",
"home-and-kitchen",
"art-and-craft-supplies",
"cosmetics-and-skincare",
"perfumery",
"luggage-store",
"school-and-office-supplies",
"personal-care",
"computer-and-electronics",
"delivery-service",
"toys",
"opticals",
"other-products",
"apparel-and-accessories",
"home-audio-and-accessories",
"regular-retail-store",
"computer-and-accessories",
"games",
"stationery",
"home-furnishings",
"health-and-beauty",
"automobile-and-accessories",
"others",
"kids-utilities",
"online-and-in-store",
"basic-service",
"travel-accessories",
"international"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "af11db53-1020-3dfe-9bc6-2ef7f1d1e052",
"name": "Tatayab",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC369_1_Tatayab_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC369",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Tatayab_logo.png",
"url": "https://tatayab.com/AE-en/home",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2099",
"name": "Get upto 5% discount on Tatayab",
"description": "Get upto 5% discount on Tatayab\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Beauty%201.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADC30",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://tatayab.com/AE-en/home"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "62ea2f16-60bc-3340-8516-c185e79db61b",
"name": "Lightinthebox",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD1985_1_Lightinthebox_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD1985",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/5631-b86ef1f0f1c21054.png",
"url": "https://lightinthebox.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "10937",
"name": "Get exclusive offers on Lightinthebox",
"description": "Get exclusive offers on Lightinthebox\n1. The offer is valid upto 2022-03-01\n2. The offer is valid for Accessories & Bags, Homeware, Toys, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-11-03T00:00:00.389Z",
"validTo": "2023-03-01T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.4,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/5631-b86ef1f0f1c21054.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"redemptionCode": "LTS15",
"termsAndConditions": [
"1. The offer is valid upto 2022-03-01\n2. The offer is valid for Accessories & Bags, Homeware, Toys, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://ad.admitad.com/g/o2yzat9lhdd1931805367d95a12660/?i=3"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "04cfbb15-1e34-3152-8521-c7adc08ac10e",
"name": "Sephora",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD1023_1_Sephora_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD1023",
"image": "https://dpimages.crayondata.com/high-res-image/adib/sephora-logo.jpg",
"url": "https://www.sephora.ae",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2104",
"name": "Get upto 5% discount on Sephora",
"description": "Get upto 5% discount on Sephora\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion12.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SS182",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://www.sephora.ae"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "11d00ba0-7adc-4004-bb90-f5272ed9a5db",
"name": "Fresh To Home",
"description": "Buy Fresh Chemical-Free Fish, Antibiotic free Chicken, Duck and Mutton online. Halal-cut and home delivered!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC51_1_Fresh_To_Home_New_Image.jpg",
"dominantColorCode": "#feffff",
"externalId": "AC51",
"image": "https://media.go2speed.org/brand/files/arabclicks/647/adv_freshtohome_icon.jpg",
"url": "https://ae.freshtohome.com",
"tasteMatchScore": 72
},
"offers": [
{
"id": "1374",
"name": "Get exclusive offers on Fresh To Home",
"description": "Get exclusive offers on Fresh To Home\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/648/adv_freshtohome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=648&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"fruits-and-vegetables-store",
"specialty-food-products",
"food-beverages-and-groceries",
"meat-products",
"online-and-in-store",
"delivery-service",
"sea-food-products",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "48c04d4a-1282-3595-b34f-f549e65c3154",
"name": "West Elm",
"description": "West Elm offers modern furniture and home decor featuring inspiring designs and colors. Create a stylish space with home accessories from West Elm.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC163_1_West_Elm_New_Image.jpg",
"dominantColorCode": "#814031",
"externalId": "AC163",
"image": "https://media.go2speed.org/brand/files/arabclicks/692/adv_westelm_icon.jpg",
"url": "https://www.westelm.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1382",
"name": "Get upto 6% cashback on West Elm",
"description": "Get upto 6% cashback on West Elm\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/692/adv_westelm_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=692&aff_id=68962"
}
}
],
"tags": [
"home-and-kitchen",
"online-and-in-store",
"kitchen-accessories",
"furniture",
"home-furnishings",
"basic-service",
"regular-retail-store",
"delivery-service",
"large-product-range"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "ec410551-b8dd-387e-beb3-5b50b06e3125",
"name": "Sivvi",
"description": "SIVVI is the only app you need for shopping fashion in the Middle East. Find the biggest brands for the best prices, and be inspired by the latest trends and easy to shop edits for women, men and kids.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD71_1_Sivvi_New_Image.jpg",
"dominantColorCode": "#eff2f9",
"externalId": "AD71",
"image": "https://dpimages.crayondata.com/high-res-image/adib/sivvi-logo.jpg",
"url": "https://www.sivvi.com/uae-en/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "7124",
"name": "Get upto 5% discount on Sivvi",
"description": "Get upto 5% discount on Sivvi\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-09-27T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/sivvi1%20Offer.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel,Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://www.sivvi.com/uae-en/"
}
}
],
"tags": [
"gifts-and-souvenirs",
"perfumery",
"home-furnishings",
"regular-retail-store",
"delivery-service",
"personal-care",
"cosmetics-and-skincare",
"health-and-beauty",
"apparel-and-accessories",
"home-and-kitchen",
"kitchen-accessories",
"large-product-range",
"gifts-and-souvenirs",
"shoes-and-accessories-store",
"basic-service",
"apparel-and-accessories",
"other-products",
"multi-brand",
"online"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "cca2c8e0-a0a3-37b0-b0aa-07a5d876e2a3",
"name": "Myprotein",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2279_1_Myprotein_New_Image.jpg",
"dominantColorCode": "#dfdfdf",
"externalId": "AC2279",
"image": "https://media.go2speed.org/brand/files/arabclicks/69/Copy of adv_myprotein_icon.jpg",
"url": "https://www.myprotein.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6861",
"name": "Get upto 5% cashback on Myprotein",
"description": "Get upto 5% cashback on Myprotein\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "EUR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/69/Copy of adv_myprotein_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=69&aff_id=68962"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "d67c656f-04a0-4e11-9b66-4ab180004234",
"name": "Danube Home",
"description": "Danube Home is a leading home improvement and home furnishing retail brand with a strong, vibrant, ever-growing presence in the Middle East, Gulf Region, and the Indian Sub-Continent. Danube Home is known for its unwavering commitment to the highest standards of customer service, unmatched quality, strikingly beautiful designs, and innovative retail services. Starting off as a single showroom in Ras Al-Khaimah in 2008, Danube Home has grown into the region\u2019s favorite destination for home interior solutions because the company has successfully captured and blended the quintessential spirit of craftsmanship and design into its bewildering range of products. Today, Danube Home is offering more than 50,000 products across 16 product-specific categories. The company has 17 showrooms and more than 5 million square feet of logistics and warehousing space. Danube Home showrooms are strategically present on major thoroughfares and in shopping malls across the Gulf Region. The company has expanded its presence beyond the sandy dunes of the Gulf by establishing its first showroom right in the heart of India. In the UAE, Danube Home has showrooms in Al Barsha, Diera, Sheikh Zayed, Sharjah, Ras Al-Khaimah, Fujairah, Al Ain, and Abu Dhabi. Danube Home has 7 showrooms in Oman, and 1 showroom in Bahrain.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC269_1_Danube_Home_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC269",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"url": "https://uae.danubehome.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1350",
"name": "Get exclusive offers on Danube Home",
"description": "Get exclusive offers on Danube Home\n1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-11-10T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.9,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/867/adv_danubehome_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2024-11-10\n2. The offer is valid for Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=867&aff_id=68962"
}
}
],
"tags": [
"basic-service",
"hardware",
"kitchen-appliances",
"home-improvement-supplies",
"furniture",
"health-and-beauty",
"multi-brand",
"online-and-in-store",
"toys-and-games",
"toys",
"plant-nursery",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"international",
"apparel-and-accessories",
"kitchen-accessories",
"kids-utilities",
"gardening-supplies",
"games",
"paint-supplies",
"cosmetics-and-skincare",
"personal-care",
"tools-and-home-improvement",
"delivery-service",
"fertilizer",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "e900a403-b964-46db-b762-759743eff3e6",
"name": "Dresslily",
"description": "Shop for the latest online womens dresses, sweaters, outerwear, tops, bottoms, bags, shoes, jewelry, watches & accessories from DressLily.com",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC35_1_Dresslily_New_Image.jpg",
"dominantColorCode": "#f5f5f5",
"externalId": "AC35",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15504-af674f26cd481a83.jpeg",
"url": "http://dresslily.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6284",
"name": "Get exclusive offers on Dresslily",
"description": "Get exclusive offers on Dresslily\n1. The offer is valid upto 2023-01-01\n2. The offer is valid for , Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-31T00:00:00.389Z",
"validTo": "2024-01-01T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15504-af674f26cd481a83.jpeg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "DLOFF",
"termsAndConditions": [
"1. The offer is valid upto 2023-01-01\n2. The offer is valid for , Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://ad.admitad.com/g/urfgdpmgwnd193180536c54bdbf551/?i=3"
}
}
],
"tags": [
"party-supplies",
"pet-supplies",
"pet-and-pet-supplies",
"toys-and-games",
"toys",
"department-store",
"large-product-range",
"home-furnishings",
"online",
"home-and-kitchen",
"apparel-and-accessories",
"accessories-store",
"clothing-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "10101386-6f01-4f71-b603-ea46c20f2eb8",
"name": "Brands For Less",
"description": "The BFL Group is one of the world?��s leading off-price retailer of fashion and homeware. Based in United Arab Emirates, we serve over three markets across the Middle East and Europe.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC13_1_Brands_For_Less_New_Image.jpg",
"dominantColorCode": "#00adcb",
"externalId": "DC13",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"url": "https://www.brandsforless.ae/",
"tasteMatchScore": 78
},
"offers": [
{
"id": "830",
"name": "Get upto 1.5% cashback on Brands For Less",
"description": "Get upto 1.5% cashback on Brands For Less\n1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-11-22T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.5,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1141/Brandforless-logo 300x300.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-11-22\n2. The offer is valid for Fashion & Accessories, Home & Garden, Sports, Mommy & Baby, Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1141&aff_id=23876"
}
}
],
"tags": [
"perfumery",
"kitchen-appliances",
"automobile-and-accessories",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"online-and-in-store",
"footwear-store",
"computer-and-accessories",
"department-store",
"home-and-kitchen",
"home-furnishings",
"apparel-and-accessories",
"international",
"accessories-store",
"shopping-mall",
"mobile-phones",
"computer-and-electronics",
"clothing-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "319fdc76-41fd-4e2e-9436-7e35060b1655",
"name": "Lensfit",
"description": "Lensfit.com, a tech-focussed multi-channel eyewear manufacturer & retailer was founded with a rebellious spirit and a soaring objective",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC76_1_Lensfit_New_Image.jpg",
"dominantColorCode": "#fcfdff",
"externalId": "AC76",
"image": "https://dpimages.crayondata.com/high-res-image/adib/lensfit_logo.png",
"url": "https://www.lensfit.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1569",
"name": "Get upto 50 AED discount on Lensfit",
"description": "Get upto 50 AED discount on Lensfit\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-01-18T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/761/adv_lensfit_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ac63",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://www.lensfit.ae/"
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"opticals",
"international",
"health-and-beauty",
"multi-brand",
"online-and-in-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "89531d1e-212d-42dd-a3eb-cc740cd34ebe",
"name": "Banggood",
"description": "Online Shopping for cool gadgets, toys, cell phones, vr headset, tv box, garden supplies & apparel at great prices. Banggood: Good Life Doesn�t Cost a Fortune.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC19_1_Banggood_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC19",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/13623-b58edd098a89c836.png",
"url": "https://www.banggood.com/",
"tasteMatchScore": 72
},
"offers": [
{
"id": "1370",
"name": "Get upto 22% cashback on Banggood",
"description": "Get upto 22% cashback on Banggood\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 22.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/685/adv_banggood_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, TV & Electronics, Mobiles, Tablets & Computers, Home, Kitchen & Garden, Sports, Fitness & Outdoors, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=685&aff_id=68962"
}
}
],
"tags": [
"hardware",
"stationery",
"pet-supplies",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"sporting-equipment",
"sports-and-outdoors",
"department-store",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"apparel-and-accessories",
"international",
"accessories-store",
"mobile-phones",
"cosmetics-and-skincare",
"computer-and-electronics",
"clothing-store",
"personal-care",
"tools-and-home-improvement",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "69d9bd13-383f-4454-9011-8e2ba40e693d",
"name": "Cotton On",
"description": "As Australia�s largest global retailer, we want to make a positive difference in the lives of everyone we touch; whether that�s in our backyard or on the other side of the world. It�s as simple as that.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC29_Cotton On_1.png",
"dominantColorCode": "#f4f4f4",
"externalId": "AC29",
"image": "https://media.go2speed.org/brand/files/arabclicks/169/adv_cottonon_icon.jpg",
"url": "https://cottonon.com",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1353",
"name": "Get upto 2.3% cashback on Cotton On",
"description": "Get upto 2.3% cashback on Cotton On\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.3,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/169/adv_cottonon_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=169&aff_id=68962"
}
}
],
"tags": [
"stationery",
"multi-brand",
"online-and-in-store",
"footwear-store",
"travel-utilities",
"computer-and-accessories",
"department-store",
"home-appliances",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"apparel-and-accessories",
"international",
"gifts-and-souvenirs",
"accessories-store",
"mobile-phones",
"computer-and-electronics",
"travel-accessories",
"clothing-store",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "afa7a75a-5acc-42f6-af04-0cb4bf1b446a",
"name": "Mumzworld",
"description": "Shop online Baby Products, best Stroller, Travel Gear, Feeding, Clothes, Toys, Car Seat, Carrier & Cot on Mumzworld",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC88_1_Mumzworld_New_Image.jpg",
"dominantColorCode": "#fefefe",
"externalId": "AC88",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"url": "http://www.mumzworld.com",
"tasteMatchScore": 82
},
"offers": [
{
"id": "1351",
"name": "Get exclusive offers on Mumzworld",
"description": "Get exclusive offers on Mumzworld\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.1,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/26/adv_mumzworld_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Baby & Kids, Home, Kitchen & Garden, Coupon Offers only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=26&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"kitchen-appliances",
"stationery",
"food-beverages-and-groceries",
"health-and-beauty",
"multi-brand",
"sporting-equipment",
"toys-and-games",
"toys",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"online",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"books-and-music",
"kids-furniture",
"cosmetics-and-skincare",
"books",
"confectionery",
"personal-care",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": true
},
{
"item": {
"id": "56148ec2-0084-4c5f-a9e8-4bcf51f81643",
"name": "Ajmal Perfumes",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2263_Ajmal_Perfumes_New_Offer.jpg",
"dominantColorCode": "#dddbe9",
"externalId": "AC2263",
"image": "https://media.go2speed.org/brand/files/arabclicks/1047/adv_ajmalperfume_icon.jpg",
"url": "http://shop.ajmalperfume.com/uae_en",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6890",
"name": "Get exclusive offers on Ajmal Perfumes",
"description": "Get exclusive offers on Ajmal Perfumes\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/1047/adv_ajmalperfume_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion, Health & Wellness only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=1047&aff_id=68962"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "2107d777-1a74-4edc-9514-31eefef3adcb",
"name": "Adorawe",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC364_Adorawe_New_Offer.jpg",
"dominantColorCode": "#d6b1a8",
"externalId": "DC364",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Adorawe_logo.png",
"url": "https://ar.adorawe.net/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2114",
"name": "Get upto 15USD discount on Adorawe",
"description": "Get upto 15USD discount on Adorawe\n1. The offer is valid upto 2022-06-18\n2. The offer is valid for Apparel,Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-18T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion%207.jpg210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "AWE84",
"termsAndConditions": [
"1. The offer is valid upto 2022-06-18\n2. The offer is valid for Apparel,Accessories, Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://ar.adorawe.net/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "42c04e94-9d07-4db2-a527-3bdbd848b62e",
"name": "Rosemary Perfumes",
"description": "The name Rose Marie Paris is derived from the rosemary plant, \"Rosemary\". This plant is known as an aromatic shrub belonging to the mint family and its origin is from southern Europe. Thin leaves are used in perfumery, and as a symbol of remembrance). Shakespeare mentioned this plant in his masterpiece, Ophelia, when Hamlet said: \"This is rosemary, it means think, then this is the trinity flower, and its meaning is: remember.\" He also mentioned it in the play Romeo and Juliet when Father Lawrence said: \"Dry your tears, and put your rosemary on this beautiful corpse.\"",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC48_1_Rose_Mary_Perfumes_New_Image.jpg",
"dominantColorCode": "#becdd8",
"externalId": "DC48",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Rosemary_logo.png",
"url": "https://www.rosemaryperfumes.com/",
"tasteMatchScore": 72
},
"offers": [
{
"id": "13838",
"name": "Get exclusive offers on Rose Mary Perfumes",
"description": "Get exclusive offers on Rose Mary Perfumes\n1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-02-03T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/936/adv_rosemaryperfumes_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-02-03\n2. The offer is valid for Beauty, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "http://go.arabclicks.com/aff_c?offer_id=936&aff_id=68962"
}
}
],
"tags": [
"basic-service",
"large-product-range",
"perfumery",
"local",
"shopping-mall",
"health-and-beauty",
"multi-brand",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "23abab01-8798-45db-80f3-ae3aae343343",
"name": "Foreo",
"description": "Learn more about LUNA range of facial brushes, ISSA toothbrushes and UFO smart devices to bring your beauty routine on next level.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC48_1_Foreo_New_Image.jpg",
"dominantColorCode": "#bfc0c6",
"externalId": "AC48",
"image": "https://media.go2speed.org/brand/files/arabclicks/6/adv_foreo_icon.jpg",
"url": "https://www.foreo.com/ar",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1395",
"name": "Get upto 3% cashback on Foreo",
"description": "Get upto 3% cashback on Foreo\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/6/adv_foreo_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=6&aff_id=68962"
}
}
],
"tags": [
"specialty-store",
"online",
"large-product-range",
"health-and-beauty",
"cosmetics-and-skincare",
"multi-brand",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "4a28a630-e64f-4287-9713-47b46450cb38",
"name": "Toys R Us",
"description": "Since its launch in Dubai in 1995, Toys 'R' Us has been the preferred destination for toys, essentials and educational products for babies and children. Come in and play in more than 21 stores across the UAE, Bahrain, Egypt, Kuwait, Oman and Qatar. Don\u2019t have the time? Our online store will help you with that. Come visit us to enjoy hassle-free shopping 24/7 and check out the latest arrivals or browse our fun stuff. We\u2019re always growing and we\u2019ll have more stores and online stores opening in the region soon \u2013 we can\u2019t wait to celebrate the joys of childhood and bring more happiness to kids of all ages!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC55_1_Toys_R_Us_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC55",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"url": "https://www.toysrusmena.com/en-AE/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "842",
"name": "Get exclusive offers on Toys R Us",
"description": "Get exclusive offers on Toys R Us\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1284/Toys-R-Us-Logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Games & Toys only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1284&aff_id=23876"
}
}
],
"tags": [
"basic-service",
"video-games",
"party-supplies",
"bicycle-and-accessories",
"art-and-craft-supplies",
"multi-brand",
"costumes",
"sporting-equipment",
"online-and-in-store",
"toys-and-games",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"kids-utilities",
"games",
"international",
"shopping-mall",
"computer-and-electronics",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "12ba32e1-6757-4ab3-ad71-a00f8144c730",
"name": "Ferns N Petals",
"description": "Exclusive Fresh Flower Arrangements Guaranteed Same Day Delivery! Mid-Night Delivery. Easy & Secure Payment. Worldwide Delivery.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC26_1_Ferns_N_Petals_New_Image.jpg",
"dominantColorCode": "#d1b4ad",
"externalId": "DC26",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"url": "https://www.fnp.ae/",
"tasteMatchScore": 82
},
"offers": [
{
"id": "1758",
"name": "Get upto 8% cashback on Ferns N Petals",
"description": "Get upto 8% cashback on Ferns N Petals\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/961/adv_fernsnpetals_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Gifts & Flowers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=961&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"basic-service",
"international",
"chocolates",
"gifts-and-souvenirs",
"florist",
"food-beverages-and-groceries",
"dry-fruits-and-nuts",
"confectionery",
"delivery-service",
"toys"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "49629e58-8fe0-3bf2-8e19-882a4ee3176e",
"name": "Tryano",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/BO4843_1_Tryano_New_Image.jpg",
"dominantColorCode": "#f1f1f1",
"externalId": "BO4843",
"image": "https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg",
"url": "https://www.tryano.com/en-ae",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6332",
"name": "Get exclusive offers on Tryano",
"description": "Get exclusive offers on Tryano\n1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-04-13T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/974/adv_tryano_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-04-13\n2. The offer is valid for Beauty, Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=974&aff_id=68962"
}
}
],
"tags": [
"clothing-store",
"accessories-store",
"regular-retail-store",
"basic-service",
"large-product-range",
"premium",
"online-and-in-store",
"local"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "55380ff0-6013-3c82-a50b-45e828ba9d35",
"name": "Swarovski",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD2057_1_Swarovski_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD2057",
"image": "https://dpimages.crayondata.com/high-res-image/adib/swarovski_logo.png",
"url": "https://www.swarovski.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "7126",
"name": "Get upto 5USD discount on Swarovski",
"description": "Get upto 5USD discount on Swarovski\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories,Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-09-27T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/swarovski_offer1.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "ADIB",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories,Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://www.swarovski.ae/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "c4d7e9fd-3971-3b3d-9e74-7119e93c1670",
"name": "Pat Pat Web",
"description": "PatPat was founded in 2014 by close friends Albert Wang (CEO) and Ken Gao (COO) in Mountain View, CA. Albert & Ken both earned their Master\u2019s degrees at Carnegie Mellon University, in Pittsburgh, PA. They also worked together as Principal Engineers at Oracle shortly thereafter. When Ken was expecting his first child, he discovered the children's clothing industry was severely lacking in fashionable, functionable options. Together with his friend, they created a shopping platform for moms to find great deals for themselves and their families, without spending a lot of time and money.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC627_Pat_Pat_Web_New_Offer.jpg",
"dominantColorCode": "#e8e6e7",
"externalId": "AC627",
"image": "https://media.go2speed.org/brand/files/arabclicks/900/adv_patpat_icon.jpg",
"url": "https://ar.patpat.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1414",
"name": "Get upto 8% cashback on Pat Pat Web",
"description": "Get upto 8% cashback on Pat Pat Web\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/900/adv_patpat_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=900&aff_id=68962"
}
}
],
"tags": [
"multi-brand",
"online",
"home-furnishings",
"apparel-and-accessories",
"apparel-and-accessories",
"large-product-range",
"regular-retail-store",
"home-and-kitchen",
"pet-and-pet-supplies",
"kids-utilities",
"shoes-and-accessories-store",
"delivery-service",
"pet-supplies",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "60a0b978-54c9-3b96-8d38-1cdb0c3c2ed0",
"name": "Watsons",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC370_1_Watsons_New_Image.jpg",
"dominantColorCode": "#efe9e9",
"externalId": "DC370",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Watsons_logo_logotype.png",
"url": "https://www.watsons.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2117",
"name": "Get upto 15% discount on Watsons",
"description": "Get upto 15% discount on Watsons\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Watson%20Offers.png210x250.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "WAT74",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Beauty only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://www.watsons.ae/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "8affa868-b20c-4e20-ba77-84b0679e683b",
"name": "Babysouk",
"description": "babysouk.com is an online baby store, providing a large variety of baby products including strollers, carriers, slings and much more.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/adib/babysouk_logo_N1.png",
"dominantColorCode": "#ffffff",
"externalId": "DC9",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"url": "https://www.babysouk.com/",
"tasteMatchScore": 84
},
"offers": [
{
"id": "839",
"name": "Get exclusive offers on Babysouk",
"description": "Get exclusive offers on Babysouk\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/368/NqvQKvm9.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Games & Toys, Gifts & Flowers, Mommy & Baby only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.urtrackinglink.com/aff_c?offer_id=368&aff_id=23876"
}
}
],
"tags": [
"regular-retail-store",
"multi-brand",
"online-and-in-store",
"travel-utilities",
"large-product-range",
"home-and-kitchen",
"apparel-and-accessories",
"kids-utilities",
"gifts-and-souvenirs",
"kids-furniture",
"accessories-store",
"travel-accessories",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "3d541c25-6df9-4fd4-b5ce-8061a12abe67",
"name": "Ounass",
"description": "Many luxury fashion designers in the Middle East",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC105_1_Ounass_New_Image.jpg",
"dominantColorCode": "#d5d5d7",
"externalId": "AC105",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"url": "https://www.ounass.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1362",
"name": "Get upto 6% cashback on Ounass",
"description": "Get upto 6% cashback on Ounass\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/561/adv_ounass_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=561&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"home-furnishings",
"shoes-and-accessories-store",
"apparel-and-accessories",
"gifts-and-souvenirs",
"furniture",
"accessories-store",
"health-and-beauty",
"multi-brand",
"standalone-store",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "dffc64f3-a8f1-4fbf-82a3-370a0c3999a7",
"name": "Amazon",
"description": "Everything you love is in Amazon.ae. Discover and buy electronics, computers, apparel & accessories, shoes, watches, furniture, home and kitchen goods, beauty & personal care, grocery, gourmet food & more. Enjoy great deals, fastest delivery and cash on delivery in UAE.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC8_Amazon_Home_Services_Bounty_1.png",
"dominantColorCode": "#eaeceb",
"externalId": "AC8",
"image": "https://media.go2speed.org/brand/files/arabclicks/705/adv_amazon_icon.jpg",
"url": "https://www.amazon.sa",
"tasteMatchScore": 76
},
"offers": [
{
"id": "13843",
"name": "Get upto 8.4AED cashback on Amazon Home Services Bounty",
"description": "Get upto 8.4AED cashback on Amazon Home Services Bounty\n1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2040-02-19T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.4,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/1117/amazon 25x250.jpeg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2039-02-19\n2. The offer is valid for Home & Garden only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1117&aff_id=23876"
}
}
],
"tags": [
"video-games",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"multi-brand",
"footwear-store",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"accessories-store",
"computer-and-electronics",
"clothing-store",
"travel-accessories",
"groceries",
"basic-service",
"hypermarket",
"kitchen-appliances",
"pet-supplies",
"furniture",
"sporting-equipment",
"music-store",
"computer-and-accessories",
"sports-and-outdoors",
"toys",
"large-product-range",
"apparel-and-accessories",
"gifts-and-souvenirs",
"mobile-phones",
"cosmetics-and-skincare",
"books",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "c03fa270-9435-3755-9da4-3fc0dadd06ec",
"name": "Ericdress",
"description": "Established in 2012, Ericdress is a global online retail company. We ship to over 200 countries worldwide. Global Distribution & Warehousing enables us to provide fast delivery. Since its founding, ericdress has seen accelerating growth rate in a number of business indicators, including year-to-year gross merchandising value, number of orders, registered buyers and sellers, and listings.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD27_1_Ericdress_New_Image.jpg",
"dominantColorCode": "#fdfdfd",
"externalId": "AD27",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20949-6cbcddd0902e72f6.png",
"url": "https://www.ericdress.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1470",
"name": "Get exclusive offers on Ericdress",
"description": "Get exclusive offers on Ericdress\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-01-24T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 8.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20949-6cbcddd0902e72f6.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ad11",
"termsAndConditions": [
"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry, China Fest only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://ad.admitad.com/g/sfl6y6jwv0d193180536d392f6b614/?i=3"
}
}
],
"tags": [
"plant-nursery",
"local",
"housewares",
"home-furnishings",
"regular-retail-store",
"delivery-service",
"toys-and-games",
"personal-care",
"cosmetics-and-skincare",
"health-and-beauty",
"toys",
"apparel-and-accessories",
"home-and-kitchen",
"kitchen-accessories",
"large-product-range",
"hardware",
"shoes-and-accessories-store",
"basic-service",
"apparel-and-accessories",
"tools-and-home-improvement",
"online-and-in-store",
"gardening-supplies",
"multi-brand"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "25c2ba8c-6535-402a-9427-4aa6fa136c38",
"name": "Pottery Barn Kids",
"description": "Pottery Barn, a member of the Williams-Sonoma Inc. portfolio of brands, was established in New York City in 1949. Known for its casual, comfortable and stylish home furnishings, Pottery Barn draws inspiration from time-honored designs from around the world to create seasonal collections unique to its stores",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD440_1_Pottery_Barn_New_Image.jpg",
"dominantColorCode": "#f7f7f7",
"externalId": "AD440",
"image": "https://media.go2speed.org/brand/files/dcm/1346/pottery-barn-kids.jpg",
"url": "https://www.potterybarnkids.ae/en/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "581",
"name": "Get upto 6% cashback on Pottery Barn",
"description": "Get upto 6% cashback on Pottery Barn\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/479/adv_potterybarn_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Home, Kitchen & Garden only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=479&aff_id=68962"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "891c1938-90b0-4eb9-9777-1f384f53a1b4",
"name": "Tomtop",
"description": "Online shopping for RC toys, cell phones, home decor, dresses, cameras, test equipment and sporting goods with a worldwide free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD77_1_Tomtop_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD77",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"url": "http://tomtop.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6295",
"name": "Get exclusive offers on Tomtop",
"description": "Get exclusive offers on Tomtop\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-23T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/14350-d3574e802373e46c.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADMR5",
"termsAndConditions": [
"1. The offer is valid upto 2022-06-30\n2. The offer is valid for , Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://ad.admitad.com/g/p1b8k02brdd1931805364bf89f6ddb/?i=3"
}
}
],
"tags": [
"stationery",
"automobile-and-accessories",
"bicycle-and-accessories",
"health-and-beauty",
"cameras-and-accessories",
"pet-and-pet-supplies",
"multi-brand",
"toys-and-games",
"home-appliances",
"home-and-kitchen",
"online",
"kitchen-accessories",
"computer-and-electronics",
"regular-retail-store",
"basic-service",
"kitchen-appliances",
"pet-supplies",
"home-audio-and-accessories",
"sporting-equipment",
"sports-and-outdoors",
"toys",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"cosmetics-and-skincare",
"school-and-office-supplies",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "e679c708-9e9b-407a-b81b-81bfa012c7c6",
"name": "Quality Food",
"description": "We are unrivaled. We deliver a customer-centric experience. We are QualityFood.ae",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC114_1_Quality_Food_New_Image.jpg",
"dominantColorCode": "#0c0f06",
"externalId": "AC114",
"image": "https://media.go2speed.org/brand/files/arabclicks/626/adv_qualityfood_icon.jpg",
"url": "https://www.qualityfood.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "598",
"name": "Get upto 1.6% cashback on Quality Food",
"description": "Get upto 1.6% cashback on Quality Food\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.6,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/626/adv_qualityfood_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Grocery & Food only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=626&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"food-beverages-and-groceries",
"dairy-products",
"bread-and-baked-goods",
"standalone-store",
"natural-organic-products",
"meat-products",
"groceries",
"online-and-in-store",
"sea-food-products",
"fruits-and-vegetables-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "58ab63ee-12e3-4d54-a9cc-3ea7619a8221",
"name": "Soukare",
"description": "souKare is one of the largest online stores for colored contact lenses.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC124_1_Soukare_New_Image.jpg",
"dominantColorCode": "#e5f2fb",
"externalId": "AC124",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"url": "https://soukare.com/ar-sa/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1389",
"name": "Get upto 5% cashback on Soukare",
"description": "Get upto 5% cashback on Soukare\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/20/adv_soukare_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Health & Wellness only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=20&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"perfumery",
"health-and-beauty",
"multi-brand",
"standalone-store",
"personal-care",
"online-and-in-store",
"nutritional-supplements",
"pharmacy",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "7cc55868-bf35-4a9e-904b-0807697f1f61",
"name": "Rivolishop",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD2055_Rivolishop_New_Offer.jpeg",
"dominantColorCode": "#080808",
"externalId": "AD2055",
"image": "https://media.go2speed.org/brand/files/dcm/1296/rivoli-shop-vouchers-code.png",
"url": "https://rivolishop.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "7118",
"name": "Get upto 5% discount on Rivolishop",
"description": "Get upto 5% discount on Rivolishop\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-09-08T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/rivolishop_offer.jpeg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://rivolishop.com/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "1172d856-80a8-4d56-b7f8-c31116949c44",
"name": "Bloomingdales",
"description": "Bloomingdale?��s is a luxury omnichannel retailer like no other.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC22_1_Bloomingdales_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC22",
"image": "https://media.go2speed.org/brand/files/arabclicks/661/adv_bloomingdales_icon.jpg",
"url": "https://Bloomingdales.ae",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1736",
"name": "Get upto 10% discount on Bloomingdales",
"description": "Get upto 10% discount on Bloomingdales\n1. The offer is valid upto 2022-06-30\n2. The offer is valid for Apparel, Accessories,Jewelry, Beauty, Home Furnishing, Gifts only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-06-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/BLOOMINGDALES%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": [
"1. The offer is valid upto 2022-06-30\n2. The offer is valid for Apparel, Accessories,Jewelry, Beauty, Home Furnishing, Gifts only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://bloomingdales.ae"
}
}
],
"tags": [
"perfumery",
"kitchen-appliances",
"stationery",
"furniture",
"health-and-beauty",
"standalone-store",
"online-and-in-store",
"footwear-store",
"luxury",
"department-store",
"large-product-range",
"home-furnishings",
"home-and-kitchen",
"gifts-and-souvenirs",
"accessories-store",
"cosmetics-and-skincare",
"clothing-store",
"school-and-office-supplies",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "fc8414a8-6d95-4e25-ad31-78f32a2a6e37",
"name": "The Book Depository",
"description": "Book Depository is the world's most international online bookstore offering over 20 million books with free delivery worldwide.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC137_1_The_Book_Depository_New_Image.jpg",
"dominantColorCode": "#cbd0c9",
"externalId": "AC137",
"image": "https://media.go2speed.org/brand/files/arabclicks/303/adv_bookdepository_icon.jpg",
"url": "https://www.bookdepository.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1393",
"name": "Get upto 4% cashback on The Book Depository",
"description": "Get upto 4% cashback on The Book Depository\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 4.0,
"currency": "AUD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/303/adv_bookdepository_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Books & Education only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=303&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"large-product-range",
"online",
"international",
"books-and-music",
"books",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "7d47892f-6bc9-3a88-94e8-feefca0f3bab",
"name": "Muji",
"description": "MUJI, originally founded in Japan in 1980, offers a wide variety of good quality products including household goods, apparel and food. Mujirushi Ryohin, MUJI in Japanese, translates as \u201Cno-brand quality goods.\u201D MUJI is based on three core principles, which remain unchanged to this day: 1. Selection of materials 2. Streamlining of processes 3. Simplification of packages MUJI's products, born from an extremely rational manufacturing process, are succinct, but they are not in the minimalist style. That is, they are like empty vessels. Simplicity and emptiness yield the ultimate universality, embracing the feelings and thoughts of all people.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC42_1_Muji_New_Image.jpg",
"dominantColorCode": "#f3f4f8",
"externalId": "DC42",
"image": "https://media.go2speed.org/brand/files/arabclicks/968/adv_muji_icon.jpg",
"url": "https://www.muji.ae/en",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1432",
"name": "Get upto 6% cashback on Muji",
"description": "Get upto 6% cashback on Muji\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/968/adv_muji_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Beauty, Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=968&aff_id=68962"
}
}
],
"tags": [
"multi-brand",
"online",
"furniture",
"home-furnishings",
"kitchen-accessories",
"stationery",
"apparel-and-accessories",
"apparel-and-accessories",
"travel-utilities",
"in-store",
"travel-accessories",
"large-product-range",
"home-appliances",
"regular-retail-store",
"home-and-kitchen",
"computer-and-electronics",
"cosmetics-and-skincare",
"shoes-and-accessories-store",
"luggage-store",
"international",
"shopping-mall",
"delivery-service",
"basic-service",
"school-and-office-supplies"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "8829d1ae-e250-3316-8a94-8c08ed9e8351",
"name": "Dailymealz",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC693_1_Dailymealz_New_Image.jpg",
"dominantColorCode": "#97F19E",
"externalId": "DC693",
"image": "https://media.go2speed.org/brand/files/dcm/1358/Logo.png",
"url": "https://dailymealz.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6895",
"name": "Get exclusive offers on Dailymealz",
"description": "Get exclusive offers on Dailymealz\n1. The offer is valid upto 2041-12-31\n2. The offer is valid for Food & Drinks only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2042-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.2,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/dcm/1358/Logo.png",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2041-12-31\n2. The offer is valid for Food & Drinks only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "http://go.urtrackinglink.com/aff_c?offer_id=1358&aff_id=23876"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "ad42ec5f-aa9d-3501-aa39-aecde462da71",
"name": "Milano",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD1020_1_Milano_New_Image.jpg",
"dominantColorCode": "#f9f0e7",
"externalId": "AD1020",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Milanoo.jpeg",
"url": "https://uae.milanomena.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2119",
"name": "Get upto 10USD discount on Milano",
"description": "Get upto 10USD discount on Milano\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion%209.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "A407",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://uae.milanomena.com/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "2c90a843-e151-3b37-b5eb-bf167f7f1266",
"name": "Dwell Stores",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC1255_1_Dwell_Stores_New_Image.jpg",
"dominantColorCode": "#3f3534",
"externalId": "AC1255",
"image": "https://dpimages.crayondata.com/high-res-image/adib/dwellstore.jpg",
"url": "https://dwellstores.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2120",
"name": "Get upto 10% discount on Dwell Stores",
"description": "Get upto 10% discount on Dwell Stores\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Home Décor only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Home%20furnishing%205.jpg210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "DSJL007",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Home Décor only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on new users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://dwellstores.ae/"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "18f944d1-2711-35e1-b900-bb91703082f0",
"name": "Mestores",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2278_1_Mestores_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC2278",
"image": "https://media.go2speed.org/brand/files/arabclicks/973/adv_mestores_icon.jpg",
"url": "https://www.mestores.com/ar-sa/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6871",
"name": "Get exclusive offers on Mestores",
"description": "Get exclusive offers on Mestores\n1. The offer is valid upto 2023-04-12\n2. The offer is valid for TV & Electronics, Mobiles, Tablets & Computers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-04-12T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 1.1,
"currency": "SAR",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/973/adv_mestores_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-04-12\n2. The offer is valid for TV & Electronics, Mobiles, Tablets & Computers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "http://go.arabclicks.com/aff_c?offer_id=973&aff_id=68962"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "dcd9f833-e362-3d15-b0c4-501f4df657d8",
"name": "Saramart",
"description": "Buy products for the best prices with free shipping!",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC49_1_Saramart_New_Image.jpg",
"dominantColorCode": "#909193",
"externalId": "DC49",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Saramart_logo.png",
"url": "APP ONLY",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2113",
"name": "Get upto 20% discount on Saramart",
"description": "Get upto 20% discount on Saramart\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/Fashion%203.jpg210x250.jpg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "SM118",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel & Accessories, Gifts, Toys, Electronics only\n3. The offer is applicable for Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "APP ONLY"
}
}
],
"tags": [
"multi-brand",
"automobile-and-accessories",
"clothing-store",
"hardware",
"home-audio-and-accessories",
"personal-care",
"art-and-craft-supplies",
"video-games",
"stationery",
"toys",
"plant-nursery",
"toys-and-games",
"large-product-range",
"home-appliances",
"regular-retail-store",
"mobile-phones",
"cosmetics-and-skincare",
"health-and-beauty",
"international",
"art-and-craft-supplies",
"basic-service",
"school-and-office-supplies",
"fertilizer",
"kitchen-appliances",
"home-furnishings",
"kitchen-accessories",
"apparel-and-accessories",
"home-and-kitchen",
"tools-and-home-improvement",
"perfumery",
"online-and-in-store",
"computer-and-electronics",
"accessories-store",
"home-improvement-supplies",
"kids-utilities",
"gardening-supplies",
"games",
"shoes-and-accessories-store",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "032b7ff8-0c59-3289-9ae1-cedc5be25f94",
"name": "Cars24",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC2269_1_Cars24_New_Image.jpg",
"dominantColorCode": "#d0d6cc",
"externalId": "AC2269",
"image": "https://media.go2speed.org/brand/files/arabclicks/1037/adv_cars24_icon.jpg",
"url": "https://cars24uae.app.link/HeVvNIS4jjb",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6887",
"name": "Get upto 224AED cashback on Cars24",
"description": "Get upto 224AED cashback on Cars24\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Cars & Automotive only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 224.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/1037/adv_cars24_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_flat",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Cars & Automotive only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=1037&aff_id=68962"
}
}
],
"tags": [
""
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "55e97f4d-2f76-4ba1-b417-27d0fece9199",
"name": "Blackshark",
"description": "Black Shark is a cutting-edge gaming technology company developing a 360 degree gaming eco-system based on hardware, software and service. This is currently carried out by our flagship gaming smartphones. Ultimately we aim to provide an unmatched gaming experience to our international fanbase and to create the best gaming world with global gamers.",
"category": "retail stores",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD10_1_Blackshark_New_Image.jpg",
"dominantColorCode": "#FCFFE0",
"externalId": "AD10",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png",
"url": "http://global.blackshark.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "4784",
"name": "Get upto 2% cashback on Blackshark",
"description": "Get upto 2% cashback on Blackshark\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-01T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 2.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20836-f84fb701ddf3084b.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2022-03-31\n2. The offer is valid for Games, , Marketplaces including Chinese Stores, Computers & Electronics only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://ad.admitad.com/g/8wvyx9bxy9d193180536480c2cdbcd/?i=3"
}
}
],
"tags": [
"basic-service",
"large-product-range",
"video-games",
"single-brand",
"international",
"mobile-phones",
"computer-and-electronics",
"other-products",
"online-and-in-store",
"delivery-service",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "07fa5146-8150-42a8-a89a-227304309fe2",
"name": "Ubuy",
"description": "Shop electronics, fashion, mobile phones, computers, gaming laptops, beauty products, home improvement & office products, perfumes & more at discount",
"category": "retail stores",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/684/adv_ubuy_icon.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC150",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC150_1_Ubuy_New_Image.jpg",
"url": "https://www.ubuy.com",
"tasteMatchScore": 70
},
"offers": [
{
"id": "890",
"name": "Get exclusive offers on Ubuy",
"description": "Get exclusive offers on Ubuy\n1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2041-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/dcm/1253/ubuy logo-new.jpg",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"offerSource": "DCM",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"currency": "",
"cashbackValue": 2.5,
"offerStatus": "active",
"url": "https://go.urtrackinglink.com/aff_c?offer_id=1253&aff_id=23876",
"termsAndConditions": [
"1. The offer is valid upto 2040-12-31\n2. The offer is valid for Marketing only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
]
}
}
],
"tags": [
"perfumery",
"food-beverages-and-groceries",
"health-and-beauty",
"pet-and-pet-supplies",
"cameras-and-accessories",
"multi-brand",
"home-appliances",
"home-and-kitchen",
"home-furnishings",
"online",
"international",
"kids-utilities",
"kitchen-accessories",
"luggage-store",
"books-and-music",
"computer-and-electronics",
"travel-accessories",
"groceries",
"regular-retail-store",
"basic-service",
"home-improvement-supplies",
"pet-supplies",
"furniture",
"home-audio-and-accessories",
"computer-and-accessories",
"large-product-range",
"apparel-and-accessories",
"mobile-phones",
"books",
"musical-instrument",
"delivery-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "55b64dbc-0e2e-46be-9de3-530621c29668",
"name": "Ssense",
"description": "Shop from 500+ luxury labels, emerging designers and streetwear brands for both men and women.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC128_1_Ssense_New_Image.jpg",
"dominantColorCode": "#090806",
"externalId": "AC128",
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"url": "https://www.ssense.com/",
"tasteMatchScore": 78
},
"offers": [
{
"id": "1383",
"name": "Get upto 5% cashback on Ssense",
"description": "Get upto 5% cashback on Ssense\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "HKD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/682/adv_ssense_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=682&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"basic-service",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"sleep-wear",
"others",
"footwear-store",
"swim-and-beach-wear",
"bags-and-wallets",
"large-product-range",
"jewellery-store",
"accessories-store",
"casual-wear",
"clothing-store",
"loafers",
"inner-wear-and-lingerie",
"boots",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "35d9cbfc-d31e-43c9-b199-8ff198ca1c04",
"name": "Nayomi",
"description": "Nayomi brings you a multitude of women's lingerie for all tastes and all forms, that way you will be sure not to go wrong with a lace bra while opting for the best support.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC91_1_Nayomi_New_Image.jpg",
"dominantColorCode": "#0e0604",
"externalId": "AC91",
"image": "https://media.go2speed.org/brand/files/arabclicks/833/adv_nayomi_icon.jpg",
"url": "https://www.nayomi.com/",
"tasteMatchScore": 72
},
"offers": [
{
"id": "1380",
"name": "Get exclusive offers on Nayomi",
"description": "Get exclusive offers on Nayomi\n1. The offer is valid upto 2024-07-02\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-07-02T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/833/adv_nayomi_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2024-07-02\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://go.arabclicks.com/aff_c?offer_id=833&aff_id=68962"
}
}
],
"tags": [
"swim-and-beach-wear",
"international",
"women's-clothing",
"outerwear",
"casual-wear",
"sleep-wear",
"daily-clothing",
"clothing-store",
"inner-wear-and-lingerie",
"online-and-in-store",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "dd4d78da-8498-4db8-be1e-a453819ecb67",
"name": "Mikyajy",
"description": "Welcome to the colorful world of Mikyajy! Since its inception 20 years ago as a pioneer in Khaleeji color cosmetics and fragrance, Mikyajy has grown into a closely-knit family of 1.5 million loyal fans across Saudi Arabia, the UAE, Oman, Bahrain, Kuwait and Qatar!",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC610_1_Mikyajy_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC610",
"image": "https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg",
"url": "https://mikyajy.com/ksa_en/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1411",
"name": "Get exclusive offers on Mikyajy",
"description": "Get exclusive offers on Mikyajy\n1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2025-07-27T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "AED",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "https://media.go2speed.org/brand/files/arabclicks/963/adv_mikyajy_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2024-07-27\n2. The offer is valid for Beauty only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "http://go.arabclicks.com/aff_c?offer_id=963&aff_id=68962"
}
}
],
"tags": [
"regular-retail-store",
"perfumery",
"health-and-beauty",
"multi-brand",
"online-and-in-store",
"travel-utilities",
"international",
"gifts-and-souvenirs",
"shopping-mall",
"cosmetics-and-skincare",
"travel-accessories",
"personal-care",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "7431b5de-0043-49ef-b586-e7e09a388ef2",
"name": "Metro Brazil",
"description": "ENJOY A WIDE RANGE OF HIGH-END BRAZILIAN CORSETS, SPORTSWEAR, ACCESSORIES AND LUXURIOUS LINGERIE",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC83_1_Metro_Brazil_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AC83",
"image": "https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg",
"url": "https://ar.metrobrazil.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1365",
"name": "Get upto 14% cashback on Metro Brazil",
"description": "Get upto 14% cashback on Metro Brazil\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/773/adv_metrobrazil_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=773&aff_id=68962"
}
}
],
"tags": [
"swim-and-beach-wear",
"occasional-clothing",
"men-and-women's-clothing",
"outerwear",
"casual-wear",
"sleep-wear",
"daily-clothing",
"clothing-store",
"inner-wear-and-lingerie",
"active-and-sports-wear",
"online-and-in-store",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "9c70a451-cd1e-4d40-973f-3864ac475e1f",
"name": "H&M",
"description": "The H&M group is one of the world?��s leading fashion companies ?�� with the brands H&M and H&M Home, COS, & Other Stories, Monki, Weekday Cheap Monday and ARKET.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC59_1_H&M_New_Image.jpg",
"dominantColorCode": "#ededed",
"externalId": "AC59",
"image": "https://media.go2speed.org/brand/files/dcm/158/800px-H&M-Logo.svg.png",
"url": "https://ae.hm.com/en/",
"tasteMatchScore": 72
},
"offers": [
{
"id": "1345",
"name": "Get upto 10% cashback on H&M",
"description": "Get upto 10% cashback on H&M\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/405/adv_hm_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=405&aff_id=68962"
}
}
],
"tags": [
"other-styles",
"jackets-and-blazers",
"outerwear",
"sleep-wear",
"daily-clothing",
"fashion-jewellery",
"loungewear",
"footwear-store",
"swim-and-beach-wear",
"dresses",
"cardigans",
"jeans",
"accessories-store",
"jewellery-store",
"maternity-wear",
"coats",
"plus-size",
"clothing-store",
"inner-wear-and-lingerie",
"regular-retail-store",
"basic-service",
"winter-wear",
"modern",
"sandals",
"men-women-children-shoes",
"online-and-in-store",
"others",
"large-product-range",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "634ea784-f4a6-4d02-8cda-0374e53823d6",
"name": "Newchic",
"description": "Discover your Most Fashionable Collocation with Newchic. Shop The Latest Trends. Our range of products include Clothing & Shoes & Home Garden & Accessories and so on.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD58_1_Newchic_New_Image.jpg",
"dominantColorCode": "#f0f0f0",
"externalId": "AD58",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"url": "http://www.newchic.com/",
"tasteMatchScore": 72
},
"offers": [
{
"id": "19886",
"name": "Get exclusive offers on Newchic",
"description": "Get exclusive offers on Newchic\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-12-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 12.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/15671-1402d334aba57d66.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "AMTDM20",
"termsAndConditions": [
"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://ad.admitad.com/g/qns7nnebxyd1931805363442850f04/?i=3"
}
}
],
"tags": [
"regular-retail-store",
"home-and-kitchen",
"online",
"home-furnishings",
"apparel-and-accessories",
"international",
"pet-supplies",
"accessories-store",
"pet-and-pet-supplies",
"footwear-store",
"delivery-service",
"basic-service"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "0eb0da82-d526-4b58-8a69-713451de1114",
"name": "American Eagle",
"description": "American Eagle Outfitters, Inc. (NYSE: AEO) is a leading global specialty retailer offering high-quality, on-trend clothing, accessories and personal care products at affordable prices under its American Eagle?� and Aerie?� brands.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC11_1_American_Eagle_New_Image.jpg",
"dominantColorCode": "#e6e6e6",
"externalId": "AC11",
"image": "https://media.go2speed.org/brand/files/dcm/1349/download (3).png",
"url": "https://www.americaneagle.com.sa/en/",
"tasteMatchScore": 72
},
"offers": [
{
"id": "1367",
"name": "Get upto 14% cashback on American Eagle",
"description": "Get upto 14% cashback on American Eagle\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 14.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/706/adv_americaneagle_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=706&aff_id=68962"
}
}
],
"tags": [
"basic-service",
"regular-retail-store",
"winter-wear",
"formal-wear",
"men-and-women's-shoes",
"jackets-and-blazers",
"outerwear",
"men-and-women's-clothing",
"sandals",
"modern",
"daily-clothing",
"sunglasses",
"online-and-in-store",
"sweaters",
"footwear-store",
"large-product-range",
"flipflops",
"dresses",
"occasional-clothing",
"accessories-store",
"coats",
"casual-wear",
"casual-shoes",
"clothing-store",
"shirts",
"western-clothing",
"t-shirts"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "3ebc8f6a-9fda-45d9-b52f-5e853be3fd39",
"name": "Boutiquefeel",
"description": "Shop Sexy Trending Dresses \u2013 Boutiquefeel offers the best women's fashion Dresses deals.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD13_1_Boutiquefeel_New_Image.jpg",
"dominantColorCode": "#eeeef1",
"externalId": "AD13",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png",
"url": "http://www.boutiquefeel.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "20483",
"name": "Get upto 10% cashback on Boutiquefeel",
"description": "Get upto 10% cashback on Boutiquefeel\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-12-28T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/18429-8476f6df9423fc86.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://ad.admitad.com/g/xeoj03ka0qd19318053638a0bfaa27/?i=3"
}
}
],
"tags": [
"jackets-and-blazers",
"daily-clothing",
"party-wear",
"footwear-store",
"swim-and-beach-wear",
"online",
"international",
"women's-shoes",
"women's-clothing",
"heels",
"dresses",
"jeans",
"clothing-store",
"inner-wear-and-lingerie",
"regular-retail-store",
"basic-service",
"winter-wear",
"flats",
"sandals",
"sweaters",
"large-product-range",
"suits",
"pants",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"shirts",
"boots"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "3a209733-ca5c-3df0-a894-22ad4dc72aee",
"name": "Ivrose",
"description": "Shop IVRose - Women's Shop IVRose - Women's Online Shopping Offering Huge Discounts on Dresses, Lingerie , Jumpsuits , Swimwear, Tops and More.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD39_1_Ivrose_New_Image.jpg",
"dominantColorCode": "#b3dee4",
"externalId": "AD39",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/18430-a685a2ffdc9b74f0.png",
"url": "http://www.ivrose.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "6242",
"name": "Get upto 10% cashback on Ivrose",
"description": "Get upto 10% cashback on Ivrose\n1. The offer is valid upto 2022-03-31\n2. The offer is valid for , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-01-28T00:00:00.389Z",
"validTo": "2023-03-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 10.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/18430-a685a2ffdc9b74f0.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2022-03-31\n2. The offer is valid for , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://ad.admitad.com/g/m0fa6csp6td1931805367623aa25b3/?i=3"
}
}
],
"tags": [
"women's-clothing",
"party-wear",
"sandals",
"clothing-store",
"thermal-wear",
"accessories-store",
"uniforms-and-work-wear",
"jeans",
"winter-wear",
"t-shirts",
"footwear-store",
"regular-retail-store",
"women's-shoes",
"casual-shoes",
"international",
"specialty-wear",
"boots",
"occasional-clothing",
"basic-service",
"large-product-range",
"sweaters",
"coats",
"daily-clothing",
"rings",
"shirts",
"casual-wear",
"sleep-wear",
"dresses",
"necklaces",
"sneakers",
"flats",
"jackets-and-blazers",
"inner-wear-and-lingerie",
"online",
"jewellery-store",
"active-and-sports-wear",
"fashion-jewellery"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "2e60109d-e243-4b4e-be0b-603ed2ee2965",
"name": "Fila",
"description": "Iconic Everywhere. Shop the latest selection of official FILA sportswear, sneakers, apparel, accessories and more.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC432_1_Fila_New_Image.jpg",
"dominantColorCode": "#f5f5f5",
"externalId": "AC432",
"image": "https://media.go2speed.org/brand/files/arabclicks/931/adv_fila_icon.jpg",
"url": "https://fila.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2111",
"name": "Get upto 15% discount on Fila",
"description": "Get upto 15% discount on Fila\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel , Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/FILA%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel , Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://fila.ae/"
}
}
],
"tags": [
"sports-shoes",
"jackets-and-blazers",
"outerwear",
"daily-clothing",
"footwear-store",
"minimalistic",
"international",
"accessories-store",
"clothing-store",
"satchels-and-shoulder-bags",
"sneakers",
"t-shirts",
"basic-service",
"regular-retail-store",
"winter-wear",
"modern",
"men-women-children-shoes",
"backpacks",
"totes",
"others",
"online-and-in-store",
"large-product-range",
"bags-and-wallets",
"pants",
"hair-accessories",
"casual-wear",
"active-and-sports-wear",
"men-women-children-clothing",
"western-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "ed011938-5c4a-4963-97de-8eebb80e28b4",
"name": "Gap",
"description": "Gap was founded in 1969 with a simple idea ?�� make it easier to find a pair of jeans that fit with a commitment to do more. Our initial commitment to do more has grown into a global ambition to champion equality, inclusivity and sustainability.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC53_1_Gap_New_Image.jpg",
"dominantColorCode": "#ededed",
"externalId": "AC53",
"image": "https://media.go2speed.org/brand/files/arabclicks/645/adv_gap_icon (1).jpg",
"url": "https://www.gap.ae/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "274",
"name": "Get upto 7% cashback on Gap",
"description": "Get upto 7% cashback on Gap\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 7.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/645/adv_gap_icon (1).jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion, Baby & Kids only\n3. The offer is applicable for selective devices\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=645&aff_id=68962"
}
}
],
"tags": [
"basic-service",
"winter-wear",
"girl's-clothing",
"other-styles",
"boy's-clothing",
"outerwear",
"men-and-women's-clothing",
"modern",
"daily-clothing",
"infant's-clothing",
"sweaters",
"swim-and-beach-wear",
"large-product-range",
"international",
"dresses",
"pants",
"occasional-clothing",
"jeans",
"casual-wear",
"clothing-store",
"active-and-sports-wear",
"shirts",
"western-clothing",
"regular-retail-store"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "63a2a04a-376e-4b2c-a0e7-b10e276a3b4e",
"name": "Berrylook",
"description": "Find latest women's clothing, dresses, tops, outerwear, and other fashion clothing and enjoy the worldwide shipping at BerryLook.com.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD9_1_Berrylook_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD9",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20138-f0987eafaaba653d.png",
"url": "https://www.berrylook.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "4178",
"name": "Get exclusive offers on Berrylook",
"description": "Get exclusive offers on Berrylook\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-01-25T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 9.2,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/20138-f0987eafaaba653d.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_flat",
"redemptionCode": "SAVE-$12",
"termsAndConditions": [
"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Shoes, Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://ad.admitad.com/g/5xtwqvy7udd19318053664f10e1b76/?i=3"
}
}
],
"tags": [
"necklaces",
"scarfs-and-shawls",
"wallets",
"jackets-and-blazers",
"outerwear",
"casual-bags",
"daily-clothing",
"fashion-jewellery",
"leather",
"footwear-store",
"online",
"international",
"dresses",
"jewellery-store",
"accessories-store",
"jeans",
"briefcase",
"coats",
"clothing-store",
"satchels-and-shoulder-bags",
"inner-wear-and-lingerie",
"sneakers",
"regular-retail-store",
"t-shirts",
"basic-service",
"winter-wear",
"flats",
"men-and-women's-shoes",
"men-and-women's-clothing",
"sandals",
"rings",
"sweaters",
"large-product-range",
"bags-and-wallets",
"pants",
"casual-wear",
"casual-shoes",
"loafers",
"boots"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "6729a838-c5ad-3bbf-a0f4-db986a466769",
"name": "Fairyseason",
"description": "Welcome to Fairyseason.com, a professional online shopping website where you will find tops, dresses, pants, swimwear, shoes and more! Our commitment is to provide a variety of high-quality fashion apparel at amazing factory direct prices and provide first-class customer service experience to our global customers.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD28_1_Fairyseason_New_Image.jpg",
"dominantColorCode": "#ededeb",
"externalId": "AD28",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/19857-7c6d80031f86e978.jpeg",
"url": "http://www.fairyseason.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1535",
"name": "Get upto 13% cashback on Fairyseason",
"description": "Get upto 13% cashback on Fairyseason\n1. The offer is valid upto 2022-07-31\n2. The offer is valid for Accessories & Bags, only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2020-12-10T00:00:00.389Z",
"validTo": "2023-07-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 13.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "http://cdn.admitad.com/campaign/images/2020/9/30/19857-7c6d80031f86e978.jpeg",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2022-07-31\n2. The offer is valid for Accessories & Bags, only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://ad.admitad.com/g/d1jqev42qod19318053675691508b5/?i=3"
}
}
],
"tags": [
"flats",
"online",
"large-product-range",
"hair-accessories",
"basic-service",
"sandals",
"boots",
"jewellery-store",
"clothing-store",
"swim-and-beach-wear",
"heels",
"bracelets",
"others",
"t-shirts",
"casual-shoes",
"dresses",
"daily-clothing",
"flipflops",
"wholesale-store",
"women's-shoes",
"fashion-jewellery",
"women's-clothing",
"occasional-clothing",
"jackets-and-blazers",
"coats",
"accessories-store",
"necklaces",
"casual-wear",
"regular-retail-store",
"western-clothing",
"footwear-store",
"modern",
"rings",
"active-and-sports-wear",
"shirts",
"winter-wear",
"outerwear",
"minimalistic"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "47bf1663-a2e5-4156-afaa-d80cd1d4d8fb",
"name": "Namshi",
"description": "Namshi offers a growing selection of globally-recognised brands, from Ginger to Ella, Nike, MANGO, adidas, trendyol, and many others, all in one place.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC90_1_Namshi_New_Image.jpg",
"dominantColorCode": "#bfe2f6",
"externalId": "AC90",
"image": "https://media.go2speed.org/brand/files/dcm/1276/namshi.png",
"url": "https://en-ae.namshi.com/",
"tasteMatchScore": 78
},
"offers": [
{
"id": "1682",
"name": "Get upto 15% discount on Namshi",
"description": "Get upto 15% discount on Namshi\n1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-02-14T00:00:00.389Z",
"validTo": "2023-02-14T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://media.go2speed.org/brand/files/arabclicks/938/adv_namshi_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ac143",
"termsAndConditions": [
"1. The offer is valid upto 2022-02-14\n2. The offer is valid for Fashion, Coupon Offers only\n3. The offer is applicable for selective devices\n4. The offer is valid on selective users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "http://www.namshi.com/"
}
}
],
"tags": [
"jackets-and-blazers",
"outerwear",
"daily-clothing",
"fashion-jewellery",
"party-wear",
"footwear-store",
"swim-and-beach-wear",
"accessories-store",
"coats",
"clothing-store",
"inner-wear-and-lingerie",
"sneakers",
"basic-service",
"regular-retail-store",
"t-shirts",
"formal-wear",
"watch-store",
"modern",
"sandals",
"men-women-children-shoes",
"sunglasses",
"online-and-in-store",
"sweaters",
"formal-shoes",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"western-clothing",
"boots",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "0e105a12-1c52-4be7-ba47-3764397bfcf5",
"name": "The Luxury Closet",
"description": "Shop New & Pre-Loved Authentic Designer Bags. $50 off first order. Free Shipping Worldwide.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC53_1_The_Luxury_Closet_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "DC53",
"image": "https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg",
"url": "https://theluxurycloset.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "821",
"name": "Get upto 3% cashback on The Luxury Closet",
"description": "Get upto 3% cashback on The Luxury Closet\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 3.0,
"currency": "",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/dcm/318/The_Luxury_Closet_867718.jpg",
"offerSource": "DCM",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion & Accessories, Online Services only\n3. The offer is applicable for selective devices\n4. The offer is valid on new users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.urtrackinglink.com/aff_c?offer_id=318&aff_id=23876"
}
}
],
"tags": [
"necklaces",
"scarfs-and-shawls",
"wallets",
"jackets-and-blazers",
"casual-bags",
"fashion-jewellery",
"daily-clothing",
"thermal-wear",
"footwear-store",
"online",
"jewellery-store",
"jeans",
"gold",
"accessories-store",
"coats",
"clothing-store",
"satchels-and-shoulder-bags",
"sneakers",
"basic-service",
"regular-retail-store",
"t-shirts",
"winter-wear",
"flats",
"men-and-women's-shoes",
"bracelets",
"fine-jewellery",
"men-and-women's-clothing",
"backpacks",
"sunglasses",
"rings",
"totes",
"sweaters",
"clutches",
"large-product-range",
"suits",
"bags-and-wallets",
"pants",
"belts",
"casual-wear",
"casual-shoes",
"loafers",
"shirts",
"boots"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "95519a75-e922-37c5-ba24-18c9202d1a38",
"name": "Bellelily",
"description": "Welcome to Bellelily.com, a one-stop online shop featuring the latest in women's fashion, home decor and more. Our commitment is to provide a wide range of high quality affordable collections along with a class-leading customer service experience to our customers.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD7_3_Bellelily_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD7",
"image": "http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png",
"url": "https://www.bellelily.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "9191",
"name": "Get exclusive offers on Bellelily",
"description": "Get exclusive offers on Bellelily\n1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2022-02-01T00:00:00.389Z",
"validTo": "2023-02-28T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 13.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2020/11/17/23698-3b87be2dc4132ac4.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "LOVE",
"termsAndConditions": [
"1. The offer is valid upto 2022-02-28\n2. The offer is valid for Accessories & Bags, , Marketplaces including Chinese Stores, Clothing, Watches & Jewelry only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://ad.admitad.com/g/bziamb92n9d1931805360ab011a33f/?i=3"
}
}
],
"tags": [
"flats",
"online",
"large-product-range",
"casual-bags",
"hair-accessories",
"bags-and-wallets",
"cardigans",
"basic-service",
"boots",
"jewellery-store",
"men-and-women's-clothing",
"belts",
"clothing-store",
"swim-and-beach-wear",
"heels",
"bracelets",
"others",
"t-shirts",
"plus-size",
"casual-shoes",
"dresses",
"daily-clothing",
"flipflops",
"inner-wear-and-lingerie",
"scarfs-and-shawls",
"jeans",
"women's-shoes",
"fashion-jewellery",
"sunglasses",
"jackets-and-blazers",
"loafers",
"accessories-store",
"necklaces",
"totes",
"casual-wear",
"regular-retail-store",
"sweaters",
"pants",
"western-clothing",
"footwear-store",
"modern",
"rings",
"active-and-sports-wear",
"shirts",
"winter-wear",
"outerwear",
"sneakers",
"minimalistic"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "534698a3-3c38-3870-b880-90b93bb45dee",
"name": "Bellewholesale",
"description": "Bellewholesale is a B2B and B2C platform for brands, retailers, individual buyers and wholesalers from the fashion industry. We have been supplying Wholesale Women\u2019s Clothing for 8 years, and mainly focus on women's apparels, shoes and other fashion items, our products are selling very well in global market such as America, Europe, Australia,Japan, South America, South Africa, southeast Asia,south Korea along with other consumer markets. Our business covers more than 200 countries and regions around the world, we have the rich knowledge and resources to supply retailers, e-tailers and independents with quality products that represent great value for money.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AD8_1_Bellewholesale_New_Image.jpg",
"dominantColorCode": "#ffffff",
"externalId": "AD8",
"image": "http://cdn.admitad.com/campaign/images/2021/1/14/24183-143a937935ab6d01.png",
"url": "https://www.bellewholesale.com/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "5901",
"name": "Get exclusive offers on Bellewholesale",
"description": "Get exclusive offers on Bellewholesale\n1. The offer is valid upto 2022-04-30\n2. The offer is valid for , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied.",
"validFrom": "2021-09-06T00:00:00.389Z",
"validTo": "2023-04-30T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 6.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. The offer discount will be already applied at the merchant website\n5. Make the payment using the valid bank card",
"image": "http://cdn.admitad.com/campaign/images/2021/1/14/24183-143a937935ab6d01.png",
"offerSource": "Admitad",
"offerStatus": "active",
"offerType": "online coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "НЕ НУЖЕН",
"termsAndConditions": [
"1. The offer is valid upto 2022-04-30\n2. The offer is valid for , Shoes, Marketplaces including Chinese Stores, Clothing only\n3. The offer is applicable for Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10.Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11.The offer is applicable on select categories/products ONLY\n12.The coupon will be auto applied on the merchant website and only using the offer link the discount will be applied."
],
"url": "https://ad.admitad.com/g/sqlyj7tk7kd193180536d373e4227f/?i=3"
}
}
],
"tags": [
"flats",
"local",
"large-product-range",
"hair-accessories",
"formal-wear",
"basic-service",
"sandals",
"specialty-wear",
"men-and-women's-clothing",
"clothing-store",
"swim-and-beach-wear",
"loungewear",
"heels",
"others",
"t-shirts",
"casual-shoes",
"dresses",
"online-and-in-store",
"daily-clothing",
"pumps",
"party-wear",
"flipflops",
"inner-wear-and-lingerie",
"jeans",
"wholesale-store",
"women's-shoes",
"running-apparel",
"occasional-clothing",
"accessories-store",
"casual-wear",
"regular-retail-store",
"pants",
"western-clothing",
"footwear-store",
"modern",
"active-and-sports-wear",
"sleep-wear",
"sneakers",
"gym-wear",
"minimalistic"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "e968a691-b274-3bfe-b29e-472b79697fe9",
"name": "Lacoste",
"description": "Lacoste is a French clothing company founded in 1933 that sells high-end clothing, footwear, perfume, leather goods, watches",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC315_1_Lacoste_New_Image.jpg",
"dominantColorCode": "#d2d2d2",
"externalId": "AC315",
"image": "https://media.go2speed.org/brand/files/arabclicks/933/adv_lacoste_icon.jpg",
"url": "https://www.lacoste.com/ae/en/",
"tasteMatchScore": 70
},
"offers": [
{
"id": "2112",
"name": "Get upto 10% discount on Lacoste",
"description": "Get upto 10% discount on Lacoste\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel , Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/LACOSTE%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"redemptionCode": "ADIB",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel , Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://www.lacoste.com/ae/en/"
}
}
],
"tags": [
"others",
"daily-clothing",
"bags-and-wallets",
"hair-accessories",
"footwear-store",
"casual-wear",
"sneakers",
"international",
"wallets",
"dresses",
"pants",
"outerwear",
"men-women-children-shoes",
"casual-shoes",
"infant's-clothing",
"sweaters",
"satchels-and-shoulder-bags",
"men-women-children-clothing",
"large-product-range",
"active-and-sports-wear",
"flipflops",
"accessories-store",
"belts",
"western-clothing",
"modern",
"swim-and-beach-wear",
"backpacks",
"online-and-in-store",
"sandals",
"watch-store",
"totes",
"fashion-watches",
"jackets-and-blazers",
"casual-bags",
"t-shirts",
"rubber-shoes",
"basic-service",
"loafers",
"clothing-store",
"flats",
"occasional-clothing",
"coats",
"regular-retail-store",
"winter-wear",
"canvas-shoes"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "ebf22cb5-7dbf-44db-a2a7-1b9f3c082879",
"name": "Ontime",
"description": "Shop Trendy Stylish Designer Watches, Jewelry, Handbags online at Ontime.com for Men, Women and Kids at great price",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/DC44_1_Ontime_New_Image.jpg",
"dominantColorCode": "#0c0c0c",
"externalId": "DC44",
"image": "https://media.go2speed.org/brand/files/arabclicks/807/adv_ontime_icon.jpg",
"url": "https://www.ontime.com",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1502",
"name": "Get upto 15USD discount on Ontime",
"description": "Get upto 15USD discount on Ontime\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 0.0,
"currency": "USD",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"image": "https://dpimages.crayondata.com/high-res-image/adib/ontime%20Image%20File210x250.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "offline coupon",
"payoutType": "cpa_flat",
"redemptionCode": "AB121",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories, Jewelry only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://www.ontime.com/ae/en/"
}
}
],
"tags": [
"necklaces",
"wallets",
"jackets-and-blazers",
"casual-bags",
"fashion-jewellery",
"daily-clothing",
"thermal-wear",
"footwear-store",
"online",
"flipflops",
"international",
"jewellery-store",
"accessories-store",
"smart-watches",
"clothing-store",
"satchels-and-shoulder-bags",
"sneakers",
"t-shirts",
"regular-retail-store",
"basic-service",
"winter-wear",
"watch-store",
"bracelets",
"sandals",
"men-women-children-shoes",
"backpacks",
"rings",
"sweaters",
"clutches",
"large-product-range",
"bags-and-wallets",
"luxury-watches",
"casual-wear",
"casual-shoes",
"loafers",
"shirts",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "55d0c09c-8838-4b63-9651-70b2bb1baa15",
"name": "Farfetch",
"description": "FARFETCH exists for the love of fashion. We believe in empowering individuality.",
"category": "apparel and accessories",
"active": true,
"properties": {
"image": "https://media.go2speed.org/brand/files/arabclicks/36/adv_farfetch_icon.jpg",
"dominantColorCode": "#e1dada",
"externalId": "AC43",
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC43_1_Farfetch_New_Image.jpg",
"url": "https://www.farfetch.com",
"tasteMatchScore": 70
},
"offers": [
{
"id": "7116",
"name": "Get upto 10% discount on Farfetch",
"description": "Get upto 10% discount on Farfetch\n1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2021-05-01T00:00:00.389Z",
"validTo": "2023-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"redemptionCode": "ADIBSD10",
"image": "https://dpimages.crayondata.com/high-res-image/adib/FF_Picture11.jpg",
"offerType": "offline coupon",
"payoutType": "cpa_percentage",
"offerSource": "partnerize",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2. Click on 'Redeem Now' to get redirected to the merchant website.\n3. Make sure the product you purchase is valid under offer T&C\n4. At checkout on the merchant website, make sure to paste the coupon code.",
"currency": "USD",
"cashbackValue": 0.0,
"offerStatus": "active",
"url": "https://www.farfetch.com/ae/",
"termsAndConditions": [
"1. The offer is valid upto 2022-12-31\n2. The offer is valid for Apparel, Accessories only\n3. The offer is applicable for Desktop/Web, Mobile\n4. The offer is valid on all users only\n5. Coupons are applicable for $BANKNAME$ card users only\n6. Coupon is applicable at online\n7. Accidental Loss of coupon shall not be covered \n8. Coupons are not transferable \n9. Coupons cannot be replaced if emails are deleted by the claimant\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience\n11. The offer is applicable on select categories/products ONLY"
]
}
}
],
"tags": [
"necklaces",
"scarfs-and-shawls",
"wallets",
"gym-wear",
"jackets-and-blazers",
"sleep-wear",
"fashion-jewellery",
"daily-clothing",
"thermal-wear",
"footwear-store",
"swim-and-beach-wear",
"online",
"flipflops",
"international",
"jewellery-store",
"accessories-store",
"coats",
"clothing-store",
"satchels-and-shoulder-bags",
"inner-wear-and-lingerie",
"sneakers",
"regular-retail-store",
"t-shirts",
"basic-service",
"winter-wear",
"watch-store",
"bracelets",
"fine-jewellery",
"sandals",
"fashion-watches",
"backpacks",
"sunglasses",
"rings",
"totes",
"sweaters",
"clutches",
"large-product-range",
"bags-and-wallets",
"suits",
"formal-shoes",
"belts",
"casual-wear",
"casual-shoes",
"loafers",
"active-and-sports-wear",
"shirts",
"men-women-children-clothing",
"boots"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
},
{
"item": {
"id": "f161cacd-e6c9-4640-86e1-8293d69ca19d",
"name": "Mr Porter",
"description": "MR PORTER is the award-winning online retail destination for men's style, combining the best international menswear with expert advice and inspirational content.",
"category": "apparel and accessories",
"active": true,
"properties": {
"curatedImage": "https://dpimages.crayondata.com/high-res-image/resized/offer/AC87_1_Mr_Porter_New_Image.jpg",
"dominantColorCode": "#efefef",
"externalId": "AC87",
"image": "https://media.go2speed.org/brand/files/arabclicks/232/adv_mrporter_icon.jpg",
"url": "http://mrporter.com",
"tasteMatchScore": 70
},
"offers": [
{
"id": "1344",
"name": "Get upto 5% cashback on Mr Porter",
"description": "Get upto 5% cashback on Mr Porter\n1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY",
"validFrom": "2022-02-07T00:00:00.389Z",
"validTo": "2024-12-31T23:59:59.389Z",
"partner": true,
"isOnline": true,
"offerActive": true,
"properties": {
"cashbackValue": 5.0,
"currency": "GBP",
"howToRedeem": "1. Click on 'Claim' at the bottom of the Offer Page.\n2.Click on 'Redeem Now' to get redirected to the merchant website.\n3.All you need to do is shop in the categories that the cashback is eligible for.\n4. After completing the transaction, your cashback will be credited to your card on an average 90 days from date of purchase.",
"image": "https://media.go2speed.org/brand/files/arabclicks/232/adv_mrporter_icon.jpg",
"offerSource": "arabclicks",
"offerStatus": "active",
"offerType": "cashback",
"payoutType": "cpa_percentage",
"termsAndConditions": [
"1. The offer is valid upto 2023-12-31\n2. The offer is valid for Fashion only\n3. The offer is applicable for Mobile, Desktop / Web\n4. The offer is valid on all users only\n5. The offer is applicable for $BANKNAME$ card users only\n6. The offer is applicable at online\n7. Approved cashback will be credited in average 90 days of successful purchase.\n8. Cashback is applicable only if the customer clicks on the offer communication and transacts using bank's cards.\n9. Cashback is subject to merchant approval, returns, refunds, bank approval etc.\n10. Customer is redirected to third party website \u2013 Terms of third party website will be applicable on the shopping experience.\n11. The offer is applicable on select categories/products ONLY"
],
"url": "https://go.arabclicks.com/aff_c?offer_id=232&aff_id=68962"
}
}
],
"tags": [
"outerwear",
"daily-clothing",
"fashion-jewellery",
"party-wear",
"footwear-store",
"swim-and-beach-wear",
"dresses",
"jewellery-store",
"accessories-store",
"coats",
"clothing-store",
"inner-wear-and-lingerie",
"sneakers",
"regular-retail-store",
"basic-service",
"formal-wear",
"watch-store",
"modern",
"sandals",
"men-women-children-shoes",
"fashion-watches",
"online-and-in-store",
"others",
"large-product-range",
"bags-and-wallets",
"formal-shoes",
"occasional-clothing",
"casual-wear",
"casual-shoes",
"active-and-sports-wear",
"western-clothing",
"boots",
"men-women-children-clothing"
],
"cities": [
"all"
],
"isOnline": true,
"merchantType": [
"online"
],
"isHyperLocal": false
},
"liked": false,
"wishlisted": false
}
],
"filters": {
"Offer Type": [
"Coupon",
"CashBack"
],
"Merchant Type": [
"Online"
]
}
}
Scenario: [15.1:231]
To validate the response of recent search API
ms: 1024
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
7
20:57:05.970 karate.env system property was: null
20:57:05.970 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
222
Given headers req_headers
0
223
And url baseUrl
0
224
And path recentApiUrl
1
225
When method get
1013
20:57:05.984 request:
1 > GET https://dev-consumer-api.crayondata.com/api/v3/merchant/search/recent
1 > Authorization: auth
1 > Content-Type: application/json
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
20:57:06.995 response time in milliseconds: 1010
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < Vary: accept-encoding,origin,access-control-request-headers,access-control-request-method,accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:06 GMT
{"response":[{"searchText":"retail","timestamp":"2022-05-10T15:27:06.246+0000"},{"searchText":"marbles","timestamp":"2022-05-10T15:27:00.833+0000"},{"searchText":"daily","timestamp":"2022-05-10T09:49:41.024+0000"},{"searchText":"apparel","timestamp":"2022-05-10T09:49:40.872+0000"},{"searchText":"amazon","timestamp":"2022-05-10T09:49:40.712+0000"},{"searchText":"ka","timestamp":"2022-05-10T09:49:40.584+0000"},{"searchText":"hotel","timestamp":"2022-05-07T09:55:51.985+0000"},{"searchText":"blu","timestamp":"2022-05-07T09:54:26.305+0000"}]}
226
Then status 200
0
227
Then print response
1
20:57:06.996 [print] {
"response": [
{
"searchText": "retail",
"timestamp": "2022-05-10T15:27:06.246+0000"
},
{
"searchText": "marbles",
"timestamp": "2022-05-10T15:27:00.833+0000"
},
{
"searchText": "daily",
"timestamp": "2022-05-10T09:49:41.024+0000"
},
{
"searchText": "apparel",
"timestamp": "2022-05-10T09:49:40.872+0000"
},
{
"searchText": "amazon",
"timestamp": "2022-05-10T09:49:40.712+0000"
},
{
"searchText": "ka",
"timestamp": "2022-05-10T09:49:40.584+0000"
},
{
"searchText": "hotel",
"timestamp": "2022-05-07T09:55:51.985+0000"
},
{
"searchText": "blu",
"timestamp": "2022-05-07T09:54:26.305+0000"
}
]
}
Scenario: [16.1:245]
To validate the response of Typeahead API
ms: 1053
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:06.685 karate.env system property was: null
20:57:06.686 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
235
Given headers req_headers
0
236
And url baseUrl
0
237
And path typeAheadApiUrl
1
238
And params searchword
1
239
When method get
1050
20:57:06.693 request:
1 > GET https://dev-consumer-api.crayondata.com/api/v3/merchant/typeAhead?searchWord=retail
1 > Authorization: auth
1 > Content-Type: application/json
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
20:57:07.741 response time in milliseconds: 1048
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < Vary: accept-encoding,origin,access-control-request-headers,access-control-request-method,accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:06 GMT
[{"name":"regular retail store","score":0.0,"type":"tags"},{"name":"retail stores","score":0.0,"type":"category"}]
240
Then status 200
0
241
Then print response
1
20:57:07.742 [print] [
{
"name": "regular retail store",
"score": 0.0,
"type": "tags"
},
{
"name": "retail stores",
"score": 0.0,
"type": "category"
}
]
Scenario: [17.1:260]
To validate the response of docs API
ms: 1126
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:06.797 karate.env system property was: null
20:57:06.798 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
250
Given headers req_headers
0
251
And url baseUrl
0
252
And path docsApiUrl
0
253
And params docsurl
0
254
When method get
1121
20:57:06.804 request:
1 > GET https://dev-consumer-api.crayondata.com/api/v3/privacy/docs?type=privacy_policy
1 > Authorization: auth
1 > Content-Type: application/json
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
20:57:07.922 response time in milliseconds: 1117
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:06 GMT
{"type":"privacy-policy","content":"<View><Text class='para'><b>YOUR PRIVACY IS IMPORTANT TO US<br/><br/>PROTECTING YOUR PRIVACY IS OUR PRIORITY </b><br/><br/>ADIB (‘the Group’) is committed to protecting your privacy, whether you are an employee, customer, third party or shareholder of the Bank.<br/><br/>Personal information is any information that allows us to identify you and includes details such as your full name, national identity number , passport number, physical addresses, mobile numbers, covered card numbers, debit card numbers, e-mail addresses, transactional data, electronic communications data, payments data, identification details of equipment or terminal appliances, as POS, PC, smartphone, tablet, browser history (log files, cookies etc.) as well as any other information that may allow us to identify you, in accordance with the provisions of applicable laws.<br/><br/>Personal information may include special personal information such as your trade union membership, medical/health status, race, religion, or criminal behaviour. This information is considered to be more sensitive and therefore we apply even stricter controls to this information.<br/><br/><b>WE PROCESS YOUR PERSONAL INFORMATION RESPONSIBLY</b><br/><br/>Upon visiting ADIB’s websites or accessing our Services, you may be asked to provide your name, surname and contact details (including phone number and email address). In some cases, we may also ask you to provide or upload documents (such as your passport, emirates ID, employment details) which will also require authentication prior to upload (e.g. via a One-Time Password sent to you via SMS to your registered mobile number). We also collect technical information about your computer (or mobile device), including your IP address, operating system and browser type, where available, for system administration or for our own commercial purposes. This is statistical data about our website users' browsing actions and patterns.<br/><br/>It is important to note that in order to process your request as a new-to-bank customer to open an account through ADIB Mobile Banking App, you will be required to upload your identification documents such as your Emirates ID, visa and/or passport in addition to your facial image taken through the camera on your mobile device. Your facial image is verified against the documents provided and UAE government database in order to complete our authentication processes and the response from Ministry of Interior including your image is stored on the ADIB database in accordance with the applicable laws and regulations.<br/><br/>We process your personal information to protect your and our legitimate interests and will only collect and process the absolute minimum set of information needed for the stated purpose. In general, ADIB collects and processes your personal information including but not limited to the following purposes:</Text><br/><br/><Text class='listText'>•    To create a record of you on our system based on your relationship with ADIB;</Text><br/><Text class='listText'>•    Processing your personal information for historical, statistical or research purposes where the outcomes are aggregated and analysed to provide you better products and services.</Text><br/><Text class='listText'>•    Prevention of financial crime, including fraud detection and prevention, sanctions screening, adverse media screening, monitoring of anti-money laundering and any financing of terrorist activities.</Text><br/><Text class='listText'>•    Enforcement of our financial and business obligations, including but not limited to the collection of outstanding amounts from you or the security that you have provided in respect of your banking facilities.<br/><Text class='listText'>•    </Text>The sale or transfer of any of our businesses/subsidiaries/legal entities or assets as part of our group transactions.</Text><br/><Text class='listText'>•    Carrying out surveys relating to customer, employee or third-party sentiment to improve our offerings.</Text><br/><Text class='listText'>•    Detecting and preventing misuse or abuse of our websites or services.</Text><br/><br/><Text class='para'>We may collect your personal information primarily from these main sources:</Text><br/><br/><Text class='listText'>•    Personal information provided knowingly and voluntarily by you when you complete a service or product application form, contact or web form, sign up to receive e-mail alerts, participate in surveys, to process any customer requests including feedback. You can choose not to provide certain information, but then you might not be able to take avail certain products / services / communications or alerts.</Text><br/><Text class='listText'>•    Personal information obtained through automated processing such as profiling activities whereby certain conclusions may be reached regarding location (based on IP address), behaviour and devices of visitors to our websites to better understand our customers/visitors in terms of the content that we display on our website, and how to enhance, advertise and market our products and services. This information is captured using browser cookies and we will alert you to these cookies so that you may disable or refuse these cookies, however, some parts of our website may become inaccessible or not function properly if you do so.</Text><br/><Text class='listText'>•    Personal information may also be obtained from other sources such as contracted third parties, credit information agencies and agents that you appoint to represent you. We will only collect personal information from these sources where we are legally entitled or obliged to do so.</Text><br/><Text class='listText'>•    Personal information from public records where you have already made the personal information public.</Text><br/><br/><Text class='para'>Due to the nature of ADIB’s activities, the group predominantly requires personal information to be collected from the indicative categories with the broad purposes for processing as specified below:<br/><br/><b>Customers:</b><br/><br/>ADIB collects and uses your personal information to provide you with the products or services that you have applied for or indicated an interest in. In particular, purposes for collection and processing include:</Text><br/><br/><Text class='listText'>•    </Text>The operation, processing and administration of any products and services provided to you, either contractually or otherwise including responding to your requests and feedback. This may include:</Text><br/><Text class='listText'>      o    Assessing whether you qualify for a finance or covered card.</Text><br/><Text class='listText'>      o    Identifying and verifying your identity, physical address, income and similar information.</Text><br/><Text class='listText'>      o    Assessing your personal financial circumstances and needs when providing any advice and/or products and services to you.</Text><br/><Text class='listText'>•    Designing and developing new products or amending current products to ensure that they are future-fit and meets the needs of our customer segments.</Text><br/><Text class='listText'>•    Analysing your data to create profiles relating to you and for you i.e. profiling and using these profiles to market products or services that may be of interest to you or that we think you will prefer.</Text><br/><Text class='listText'>•    Providing you with information, alerts or updates on our existing products and services or any other aspects of our services, where you've consented to receiving these by registering for them through our services or on our website or otherwise.</Text><br/><Text class='listText'>•    For designing, marketing, advertising of banking / financial services or related products or opportunities available from ADIB and its affiliates and providing the same to you.</Text><br/><Text class='listText'>•    To notify you about changes to our services and for all other incidental and associated purposes relating to the provision of services.</Text><br/><br/><Text class='para'><b>Job applicants:</b><br/><br/>ADIB collects and uses the personal information you share with us to process your job application, including carrying out any background, criminal and reference checks including but not limited to social media, reputation, education, passport verification and bankruptcy checks.<br/><br/>Your personal information will be retained as part of your employee file if you are a successful candidate and retained in line with applicable legislative requirements. If you are not successful, we will retain your information on our talent management system for a period of 2 years so that we may contact you for other suitable roles.<br/><br/><b>Employees (including contractors and third-party managed services):</b><br/><br/>ADIB processes your personal information to create an employee record of you on our system and to facilitate continuous monitoring and fulfilment of mutual employment obligations during your employment with us.<br/><br/><b>Next of kin and Beneficiaries:</b><br/><br/>ADIB creates a record of you on our system for the purposes of identifying you as our customer’s or employee’s next of kin or beneficiary where your details have been provided to us.<br/><br/><b>Third parties:</b><br/><br/>ADIB creates a record of our relationship with you on our system and we process your personal information for due diligence, risk assessment, administrative and payment purposes.<br/><br/><b>YOUR PERSONAL INFORMATION MAY BE SHARED IN LIMITED, NECESSARY CIRCUMSTANCES</b><br/><br/>ADIB is committed to provide you with a seamless service across all our products and services; and in order to enhance our banking relationship with you we may share your personal information with other ADIB group entities ('affiliates') as well as third parties, both locally and internationally, to perform our services, under a legal obligation, regulatory requirement, contractual terms or where we consider it reasonably necessary to do so. In limited instances permitted by the applicable law, your personal information may be shared outside the local jurisdiction to jurisdictions that offer appropriate safeguards with a similar degree of protection.<br/><br/>We may also need to share your personal information with external organisations such as credit agencies or other regulatory or industry bodies, to meet our due diligence, regulatory and legal obligations.<br/><br/>Your personal information may be shared with our business partners or counterparties, where we are involved in corporate transactions or to any party to whom we assign our rights under any of our agreements for impacted products and services.<br/><br/>While engaging third parties, we endeavour to choose reliable service providers who have data privacy policies equivalent to the standards adopted by us and subject to appropriate contractual obligations. We would only share your personal information in circumstances that are necessary and under the following conditions:</Text><br/><br/><Text class='listText'>•    Your personal information is treated as strictly confidential and kept secure by adopting adequate security and organisational measures.</Text><br/><Text class='listText'>•    Use of your information would be in a manner consistent with the purposes for which it was originally collected.</Text><br/><Text class='listText'>•    Use of your information is compliant with all applicable privacy and data protection laws; and meet the disclosure requirements of any law binding on us.</Text><br/><br/><Text class='para'>Our websites are generally not intended for persons under 18 years of age. We do not knowingly solicit or collect personal data from or about children on our websites except as permitted under applicable law.<br/><br/><b>ADIB KEEPS YOUR PERSONAL INFORMATION SECURE</b><br/><br/>ADIB implements appropriate physical, electronic and procedural safeguards, security policies and procedures to keep your personal information secure. These controls include encryption and other forms of security aligned to global good practice. We take steps to protect your information from unauthorized access and against unlawful processing, misuse, accidental loss, modification, destruction and damage.<br/><br/>Any employees and third parties who process personal information for us or on our behalf are contractually obligated to comply with and implement the same levels of protection and confidentiality standards as a minimum.<br/><br/><b>WE RESPECT YOUR RIGHTS AT ADIB</b><br/><br/>In line with applicable legislation, you have the following legal rights in respect of your personal information:</Text><br/><br/><Text class='listText'>•    Right to access your personal information thereby enabling you to obtain a copy of your personal information that we have on record and to check that we are lawfully processing it.</Text><br/><Text class='listText'>•    Right to correct your personal information, thereby enabling you to request that we correct any incomplete or inaccurate personal information that we hold about you.</Text><br/><Text class='listText'>•    Right to have your personal information deleted under certain circumstances. For example, where your personal information is no longer required to be retained by ADIB in respect of our legal obligations.</Text><br/><Text class='listText'>•    Right to object to or restrict process of your personal information under certain circumstances. For example, if you want us to establish the accuracy of the personal information that we hold on you. This includes the withdrawal of consent to processing in line with applicable regulations.</Text><br/><Text class='listText'>•    Right to receive or transmit your personal information to another organisation at your request in a structured, commonly used and machine-readable format.</Text><br/><Text class='listText'>•    Right to request manual intervention in case a fully automated decision is made about you that significantly impacts you and where you don’t agree with the outcome.</Text><br/><Text class='listText'>•    Right to opt out of or opt in to receiving direct marketing at any point during your customer journey with ADIB.</Text><br/><Text class='listText'>•    Right to raise a complaint to ADIB where you are concerned with how your personal information is processed and where this is not resolved to your liking, then to raise a complaint with the relevant regulator or supervisory authority. You can contact us at <a href='mailto:customerservice@adib.ae?subject=Smartdeals'>customerservice@adib.ae</a></Text><br/><br/><Text class='para'><b>AMENDMENTS TO THIS NOTICE</b><br/><br/>We reserve the right to update or modify this statement, at any time and without prior notice, by posting the revised version on our websites.<br/><br/><br/><b>Cookies</b><br/><br/>We use cookies and similar technologies to distinguish you from other users of our websites, to improve your experience when accessing our websites, and to improve our websites. You can set your browser to refuse all or some browser cookies, or to alert you when websites set or access cookies. If you disable or refuse cookies, please note that some parts of our websites may become inaccessible or not function properly. Detailed information on the cookies we use and the purposes for which we use them are set out in our Cookie Policy<br/><br/><b>Cookies Notice (on webpage)</b><br/><br/>We use cookies to give you the best possible experience on our website. By continuing to browse this site, you give consent for cookies to be used. For more details, please read our Cookie Policy.<br/><br/><b>Cookies Policy</b><br/><br/>Our public website and Internet Banking services, along with most other major websites, use cookies.<br/><br/>Cookies are pieces of information that a website transfers to the cookie file on your computer's hard disk. Cookies enable users to navigate around the website and (where appropriate) enable us to personalize and tailor the content to fit the needs of visitors who have accessed the site.<br/><br/>We use two types of cookie on our website.<br/><br/>Session cookies, which are temporary cookies that remain in the cookie file of your computer until you close your browser at which point they are deleted.<br/><br/>Persistent or stored cookies that remain permanently on the cookie file of your computer.<br/><br/>Cookies cannot look into your computer and obtain information about you or your family or read any material kept on your hard drive and, unless you have logged onto Internet Banking, cookies cannot be used to identify who you are.<br/><br/>Cookies cannot be used by anyone else who has access to the computer to find out anything about you, other than the fact that someone using the computer has visited a certain website.<br/><br/>We never use the data gathered through cookies to contact you via post, email or phone. We may use cookies to show you subtly tailored content on our website or other websites of things we think you might be interested in, but only in relation to ADIB products and services. You will never see advertising on our website from anyone other than ADIB group companies and our agents.<br/><br/>The cookies we use are completely safe. In fact, many of them are used purely to provide important security features such as protecting your data and your accounts.<br/><br/>We use email analytics and reporting tools to see how many of our emails are opened and which links receive the most clicks. Knowing which articles and topics our customers like and which they don't like helps us improve our content and make our emails more relevant.<br/><br/>We maintain strict security standards and procedures to prevent unauthorized access to information about you. ADIB will never contact you by email or otherwise to ask you to validate personal information such as your user ID, password, or account numbers. If you receive such a request, please call us on 600 543216 (within UAE) and +9712 6100600 (outside UAE).</Text></View>","lastUpdated":"2021-09-30T12:02:36+00:00"}
255
Then status 200
0
256
Then print response
3
20:57:07.926 [print] {
"type": "privacy-policy",
"content": "<View><Text class='para'><b>YOUR PRIVACY IS IMPORTANT TO US<br/><br/>PROTECTING YOUR PRIVACY IS OUR PRIORITY </b><br/><br/>ADIB (\u2018the Group\u2019) is committed to protecting your privacy, whether you are an employee, customer, third party or shareholder of the Bank.<br/><br/>Personal information is any information that allows us to identify you and includes details such as your full name, national identity number , passport number, physical addresses, mobile numbers, covered card numbers, debit card numbers, e-mail addresses, transactional data, electronic communications data, payments data, identification details of equipment or terminal appliances, as POS, PC, smartphone, tablet, browser history (log files, cookies etc.) as well as any other information that may allow us to identify you, in accordance with the provisions of applicable laws.<br/><br/>Personal information may include special personal information such as your trade union membership, medical/health status, race, religion, or criminal behaviour. This information is considered to be more sensitive and therefore we apply even stricter controls to this information.<br/><br/><b>WE PROCESS YOUR PERSONAL INFORMATION RESPONSIBLY</b><br/><br/>Upon visiting ADIB\u2019s websites or accessing our Services, you may be asked to provide your name, surname and contact details (including phone number and email address). In some cases, we may also ask you to provide or upload documents (such as your passport, emirates ID, employment details) which will also require authentication prior to upload (e.g. via a One-Time Password sent to you via SMS to your registered mobile number). We also collect technical information about your computer (or mobile device), including your IP address, operating system and browser type, where available, for system administration or for our own commercial purposes. This is statistical data about our website users' browsing actions and patterns.<br/><br/>It is important to note that in order to process your request as a new-to-bank customer to open an account through ADIB Mobile Banking App, you will be required to upload your identification documents such as your Emirates ID, visa and/or passport in addition to your facial image taken through the camera on your mobile device. Your facial image is verified against the documents provided and UAE government database in order to complete our authentication processes and the response from Ministry of Interior including your image is stored on the ADIB database in accordance with the applicable laws and regulations.<br/><br/>We process your personal information to protect your and our legitimate interests and will only collect and process the absolute minimum set of information needed for the stated purpose. In general, ADIB collects and processes your personal information including but not limited to the following purposes:</Text><br/><br/><Text class='listText'>\u2022    To create a record of you on our system based on your relationship with ADIB;</Text><br/><Text class='listText'>\u2022    Processing your personal information for historical, statistical or research purposes where the outcomes are aggregated and analysed to provide you better products and services.</Text><br/><Text class='listText'>\u2022    Prevention of financial crime, including fraud detection and prevention, sanctions screening, adverse media screening, monitoring of anti-money laundering and any financing of terrorist activities.</Text><br/><Text class='listText'>\u2022    Enforcement of our financial and business obligations, including but not limited to the collection of outstanding amounts from you or the security that you have provided in respect of your banking facilities.<br/><Text class='listText'>\u2022    </Text>The sale or transfer of any of our businesses/subsidiaries/legal entities or assets as part of our group transactions.</Text><br/><Text class='listText'>\u2022    Carrying out surveys relating to customer, employee or third-party sentiment to improve our offerings.</Text><br/><Text class='listText'>\u2022    Detecting and preventing misuse or abuse of our websites or services.</Text><br/><br/><Text class='para'>We may collect your personal information primarily from these main sources:</Text><br/><br/><Text class='listText'>\u2022    Personal information provided knowingly and voluntarily by you when you complete a service or product application form, contact or web form, sign up to receive e-mail alerts, participate in surveys, to process any customer requests including feedback. You can choose not to provide certain information, but then you might not be able to take avail certain products / services / communications or alerts.</Text><br/><Text class='listText'>\u2022    Personal information obtained through automated processing such as profiling activities whereby certain conclusions may be reached regarding location (based on IP address), behaviour and devices of visitors to our websites to better understand our customers/visitors in terms of the content that we display on our website, and how to enhance, advertise and market our products and services. This information is captured using browser cookies and we will alert you to these cookies so that you may disable or refuse these cookies, however, some parts of our website may become inaccessible or not function properly if you do so.</Text><br/><Text class='listText'>\u2022    Personal information may also be obtained from other sources such as contracted third parties, credit information agencies and agents that you appoint to represent you. We will only collect personal information from these sources where we are legally entitled or obliged to do so.</Text><br/><Text class='listText'>\u2022    Personal information from public records where you have already made the personal information public.</Text><br/><br/><Text class='para'>Due to the nature of ADIB\u2019s activities, the group predominantly requires personal information to be collected from the indicative categories with the broad purposes for processing as specified below:<br/><br/><b>Customers:</b><br/><br/>ADIB collects and uses your personal information to provide you with the products or services that you have applied for or indicated an interest in. In particular, purposes for collection and processing include:</Text><br/><br/><Text class='listText'>\u2022    </Text>The operation, processing and administration of any products and services provided to you, either contractually or otherwise including responding to your requests and feedback. This may include:</Text><br/><Text class='listText'>      o    Assessing whether you qualify for a finance or covered card.</Text><br/><Text class='listText'>      o    Identifying and verifying your identity, physical address, income and similar information.</Text><br/><Text class='listText'>      o    Assessing your personal financial circumstances and needs when providing any advice and/or products and services to you.</Text><br/><Text class='listText'>\u2022    Designing and developing new products or amending current products to ensure that they are future-fit and meets the needs of our customer segments.</Text><br/><Text class='listText'>\u2022    Analysing your data to create profiles relating to you and for you i.e. profiling and using these profiles to market products or services that may be of interest to you or that we think you will prefer.</Text><br/><Text class='listText'>\u2022    Providing you with information, alerts or updates on our existing products and services or any other aspects of our services, where you've consented to receiving these by registering for them through our services or on our website or otherwise.</Text><br/><Text class='listText'>\u2022    For designing, marketing, advertising of banking / financial services or related products or opportunities available from ADIB and its affiliates and providing the same to you.</Text><br/><Text class='listText'>\u2022    To notify you about changes to our services and for all other incidental and associated purposes relating to the provision of services.</Text><br/><br/><Text class='para'><b>Job applicants:</b><br/><br/>ADIB collects and uses the personal information you share with us to process your job application, including carrying out any background, criminal and reference checks including but not limited to social media, reputation, education, passport verification and bankruptcy checks.<br/><br/>Your personal information will be retained as part of your employee file if you are a successful candidate and retained in line with applicable legislative requirements. If you are not successful, we will retain your information on our talent management system for a period of 2 years so that we may contact you for other suitable roles.<br/><br/><b>Employees (including contractors and third-party managed services):</b><br/><br/>ADIB processes your personal information to create an employee record of you on our system and to facilitate continuous monitoring and fulfilment of mutual employment obligations during your employment with us.<br/><br/><b>Next of kin and Beneficiaries:</b><br/><br/>ADIB creates a record of you on our system for the purposes of identifying you as our customer\u2019s or employee\u2019s next of kin or beneficiary where your details have been provided to us.<br/><br/><b>Third parties:</b><br/><br/>ADIB creates a record of our relationship with you on our system and we process your personal information for due diligence, risk assessment, administrative and payment purposes.<br/><br/><b>YOUR PERSONAL INFORMATION MAY BE SHARED IN LIMITED, NECESSARY CIRCUMSTANCES</b><br/><br/>ADIB is committed to provide you with a seamless service across all our products and services; and in order to enhance our banking relationship with you we may share your personal information with other ADIB group entities ('affiliates') as well as third parties, both locally and internationally, to perform our services, under a legal obligation, regulatory requirement, contractual terms or where we consider it reasonably necessary to do so. In limited instances permitted by the applicable law, your personal information may be shared outside the local jurisdiction to jurisdictions that offer appropriate safeguards with a similar degree of protection.<br/><br/>We may also need to share your personal information with external organisations such as credit agencies or other regulatory or industry bodies, to meet our due diligence, regulatory and legal obligations.<br/><br/>Your personal information may be shared with our business partners or counterparties, where we are involved in corporate transactions or to any party to whom we assign our rights under any of our agreements for impacted products and services.<br/><br/>While engaging third parties, we endeavour to choose reliable service providers who have data privacy policies equivalent to the standards adopted by us and subject to appropriate contractual obligations. We would only share your personal information in circumstances that are necessary and under the following conditions:</Text><br/><br/><Text class='listText'>\u2022    Your personal information is treated as strictly confidential and kept secure by adopting adequate security and organisational measures.</Text><br/><Text class='listText'>\u2022    Use of your information would be in a manner consistent with the purposes for which it was originally collected.</Text><br/><Text class='listText'>\u2022    Use of your information is compliant with all applicable privacy and data protection laws; and meet the disclosure requirements of any law binding on us.</Text><br/><br/><Text class='para'>Our websites are generally not intended for persons under 18 years of age. We do not knowingly solicit or collect personal data from or about children on our websites except as permitted under applicable law.<br/><br/><b>ADIB KEEPS YOUR PERSONAL INFORMATION SECURE</b><br/><br/>ADIB implements appropriate physical, electronic and procedural safeguards, security policies and procedures to keep your personal information secure. These controls include encryption and other forms of security aligned to global good practice. We take steps to protect your information from unauthorized access and against unlawful processing, misuse, accidental loss, modification, destruction and damage.<br/><br/>Any employees and third parties who process personal information for us or on our behalf are contractually obligated to comply with and implement the same levels of protection and confidentiality standards as a minimum.<br/><br/><b>WE RESPECT YOUR RIGHTS AT ADIB</b><br/><br/>In line with applicable legislation, you have the following legal rights in respect of your personal information:</Text><br/><br/><Text class='listText'>\u2022    Right to access your personal information thereby enabling you to obtain a copy of your personal information that we have on record and to check that we are lawfully processing it.</Text><br/><Text class='listText'>\u2022    Right to correct your personal information, thereby enabling you to request that we correct any incomplete or inaccurate personal information that we hold about you.</Text><br/><Text class='listText'>\u2022    Right to have your personal information deleted under certain circumstances. For example, where your personal information is no longer required to be retained by ADIB in respect of our legal obligations.</Text><br/><Text class='listText'>\u2022    Right to object to or restrict process of your personal information under certain circumstances. For example, if you want us to establish the accuracy of the personal information that we hold on you. This includes the withdrawal of consent to processing in line with applicable regulations.</Text><br/><Text class='listText'>\u2022    Right to receive or transmit your personal information to another organisation at your request in a structured, commonly used and machine-readable format.</Text><br/><Text class='listText'>\u2022    Right to request manual intervention in case a fully automated decision is made about you that significantly impacts you and where you don\u2019t agree with the outcome.</Text><br/><Text class='listText'>\u2022    Right to opt out of or opt in to receiving direct marketing at any point during your customer journey with ADIB.</Text><br/><Text class='listText'>\u2022    Right to raise a complaint to ADIB where you are concerned with how your personal information is processed and where this is not resolved to your liking, then to raise a complaint with the relevant regulator or supervisory authority. You can contact us at <a href='mailto:customerservice@adib.ae?subject=Smartdeals'>customerservice@adib.ae</a></Text><br/><br/><Text class='para'><b>AMENDMENTS TO THIS NOTICE</b><br/><br/>We reserve the right to update or modify this statement, at any time and without prior notice, by posting the revised version on our websites.<br/><br/><br/><b>Cookies</b><br/><br/>We use cookies and similar technologies to distinguish you from other users of our websites, to improve your experience when accessing our websites, and to improve our websites. You can set your browser to refuse all or some browser cookies, or to alert you when websites set or access cookies. If you disable or refuse cookies, please note that some parts of our websites may become inaccessible or not function properly. Detailed information on the cookies we use and the purposes for which we use them are set out in our Cookie Policy<br/><br/><b>Cookies Notice (on webpage)</b><br/><br/>We use cookies to give you the best possible experience on our website. By continuing to browse this site, you give consent for cookies to be used. For more details, please read our Cookie Policy.<br/><br/><b>Cookies Policy</b><br/><br/>Our public website and Internet Banking services, along with most other major websites, use cookies.<br/><br/>Cookies are pieces of information that a website transfers to the cookie file on your computer's hard disk. Cookies enable users to navigate around the website and (where appropriate) enable us to personalize and tailor the content to fit the needs of visitors who have accessed the site.<br/><br/>We use two types of cookie on our website.<br/><br/>Session cookies, which are temporary cookies that remain in the cookie file of your computer until you close your browser at which point they are deleted.<br/><br/>Persistent or stored cookies that remain permanently on the cookie file of your computer.<br/><br/>Cookies cannot look into your computer and obtain information about you or your family or read any material kept on your hard drive and, unless you have logged onto Internet Banking, cookies cannot be used to identify who you are.<br/><br/>Cookies cannot be used by anyone else who has access to the computer to find out anything about you, other than the fact that someone using the computer has visited a certain website.<br/><br/>We never use the data gathered through cookies to contact you via post, email or phone. We may use cookies to show you subtly tailored content on our website or other websites of things we think you might be interested in, but only in relation to ADIB products and services. You will never see advertising on our website from anyone other than ADIB group companies and our agents.<br/><br/>The cookies we use are completely safe. In fact, many of them are used purely to provide important security features such as protecting your data and your accounts.<br/><br/>We use email analytics and reporting tools to see how many of our emails are opened and which links receive the most clicks. Knowing which articles and topics our customers like and which they don't like helps us improve our content and make our emails more relevant.<br/><br/>We maintain strict security standards and procedures to prevent unauthorized access to information about you. ADIB will never contact you by email or otherwise to ask you to validate personal information such as your user ID, password, or account numbers. If you receive such a request, please call us on 600 543216 (within UAE) and +9712 6100600 (outside UAE).</Text></View>",
"lastUpdated": "2021-09-30T12:02:36+00:00"
}
Scenario: [18.1:273]
To validate the response of faqs API
ms: 1012
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:06.856 karate.env system property was: null
20:57:06.857 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
264
Given headers req_headers
0
265
And url baseUrl
0
266
And path faqsApiUrl
1
267
When method get
1006
20:57:06.861 request:
1 > GET https://dev-consumer-api.crayondata.com/api/v3/docs/faqs
1 > Authorization: auth
1 > Content-Type: application/json
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
20:57:07.864 response time in milliseconds: 1003
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:06 GMT
{"type":"faqs","content":"[{\"id\":2,\"title\":\"What is Bazaar?\",\"info\":\"Bazaar is an offer discovery platform that helps you discover the best offers from your favorite brands as well as discover new brands and products that you'll love! Bazaar is powered by maya.ai, who understands your tastes and preferences and provides personalized and relevant offer recommendations.\"},{\"id\":3,\"title\":\"How does Bazaar work?\",\"info\":\"As your offer partner, we are keen to extend great offers and savings to you through Bazaar, which is our intelligent offer platform that connects you to brands and offers that cater to your interests and preferences. Bazaar is GDPR Complaint, and uses AI and non-PII data, such as transaction information or brand/category affinity, to provide personalized recommendations for every user\"},{\"id\":4,\"title\":\"How can I become a member on Bazaar?\",\"info\":\"Bazaar memberships are provided by bank name Bank. If you are a customer of bank name Bank, you can directly access Bazaar from your mobile banking app.<br/>Note: Subject to change\"},{\"id\":5,\"title\":\"What are the different offers I can get from Bazaar?\",\"info\":\"Bazaar hosts an exhaustive list of offers from our merchant and brand partners across dining, travel, fashion and retail. These offers could be in the form of instant discounts, coupon codes or cashbacks that get credited to you at a later date.\"},{\"id\":6,\"title\":\"What are the steps to avail an offer?\",\"info\":\"In order to ensure simplicity and ease of access, we allow you to claim offers and store them under the 'claimed offers' section of your Bazaar App. You can claim offers on the go, and revisit your claimed offers section to redeem the offers. Upon redeeming the offer you will be redirected to the merchant's website, where you may provide the coupon code at the checkout page to avail the offer\"},{\"id\":7,\"title\":\"What are the Terms of Service of Bazaar?\",\"info\":\"Please find our Terms of Service <span className='cursor primary-color'> here </span>\"},{\"id\":8,\"title\":\"How to change my account settings?\",\"info\":\"The profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can visit the relevant subsections to update your account details\"},{\"id\":9,\"title\":\"How to change my language preference?\",\"info\":\"Preferred language can be selected while onboarding on to the app, and can be changed later from the Account Settings Panel as well. On the web version of the Bazaar App, click on the language selection button. On the mobile App, the profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can scroll down to find the Language section.\"},{\"id\":10,\"title\":\"How to change my email preferences/notification settings?\",\"info\":\"The profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can visit the 'Notification Settings' subsection to alter your preferences\"},{\"id\":11,\"title\":\"What is the Taste Profile?\",\"info\":\"The Taste Profile is a collection of affiinities of the individual user. These affinities are created on the basis of the users' interaction on the Bazaar App through likes, dislikes, purchace history, purchase frequency, etc. As the user's interaction increases, we will be able to understand their preferences and recommend relevant offers in return. The Taste profile helps to optimize this process without requiring personally identifiable information from the user.\"},{\"id\":12,\"title\":\"How can I edit my Taste Profile?\",\"info\":\"The profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can visit the 'Taste Profile' subsection to alter your preferences. Alternatively, you can also modify your taste profile through your interactions such as disliking, rating and reviewing the recommendations.\"},{\"id\":13,\"title\":\"How can I see my recommendations?\",\"info\":\"Log in to your Bazaar App on mobile or on the web version. Alternatively, you could also find Bazaar as an extention within your bank's mobile app. On the homepage, you may notice different categories and personalized lists under which the offers recommended to you are present.\"},{\"id\":14,\"title\":\"How can I improve the recommendations I get?\",\"info\":\"Our recommendation system is ever evolving with every interaction on the Bazaar App. You can improve the recommendations by modifying your taste profile to tell us what you like, or by modifying your interactions with recommendations you receive, such as disliking an offer you do not wish to see again.\"},{\"id\":15,\"title\":\"What is product TasteMatch Score?\",\"info\":\"TasteMatch score™ is an affinity based scoring system that informs how relevant the offer is to the end user. A TasteMatch score ™ for the same offer may be different for every user. This is because the TasteMatch score ™ accounts every user's interaction such as likes, dislikes, transaction history, taste preference, then ranks the exisisting offers in a decreasing order of preferrence i.e. most preferred offer will be the first offer you see on the list. A Higher TasteMatch score (tm) indicates a higher relevance for the offer.\"},{\"id\":16,\"title\":\"How is the promotional content relevant to me?\",\"info\":\"We have a vast number of brands within our merchant ecosystem, who provide many offers and discounts everyday. Maya.ai collates these offers in real time, matches the right offers for every customer, based on the individual taste preferences, to provide personalized recommendations for every user. This helps the user discover the right offers (for them) at the right time, and additionally saves precious time and effort otherwise used to decluttering irrelevant offers.\"},{\"id\":17,\"title\":\"How are orders delivered to me?\",\"info\":\"When a user redeems an offer, we redirect them to the merchant's website to complete the order and checkout. The merchant partner will process the order and deliver to the user. The delivery policies of the merchant, from whose website the user shops at, will apply in such cases.\"},{\"id\":18,\"title\":\"What are the shipping policies of Bazaar?\",\"info\":\"Shipping policies are subject to change based on those that are mandated by the merchant partner. Please visit the merchant's website or app for more details.\"},{\"id\":19,\"title\":\"What are the shipping restrictions?\",\"info\":\"Shipping policies are subject to change based on those that are mandated by the merchant partner. We recommend carefully reading any and all shipping policies and/or restrictions on the merchant's website or app before placing an order.\"},{\"id\":20,\"title\":\"Is there International Shipping available?\",\"info\":\"International shipping facility is subject to the merchant's ability to do the fulfillment. The shipping policies and restrictions mandated by the merchant and/or service locations will apply. We recommend carefully reading any and all shipping policies and/or restrictions on the merchant's website or app before placing an order.\"},{\"id\":21,\"title\":\"How can I raise an issue or give feedback on shipping?\",\"info\":\"Any and all fulfillment and shipping related feedback can be provided by the merchant partner's customer care or help center.\"},{\"id\":22,\"title\":\"How can I raise a complaint if my redemption code / cashback doesn't work?\",\"info\":\"All redemption / cashback related issues can be solved by the merchant partner's customer care or help center.\"},{\"id\":23,\"title\":\"How do I know the choices I see is personalised for me?\",\"info\":\"All data that is available to us such as location, clicks, likes, wishlists, previous purchases, etc. contributes to personalization. All of this put together helps in identifying segments of visitors with distinct preferences or needs, for creating targeted experiences for them.\"},{\"id\":24,\"title\":\"What kind of data do you track and use?\",\"info\":\"We track the users location and use all interaction based data such as clicks, wishlists, likes, purchases, etc., to enrich the users Taste Profile. We also use transaction data to deliver better choices.\"}]","lastUpdated":"2021-09-30T12:02:36+00:00"}
268
Then status 200
0
269
Then print response
4
20:57:07.870 [print] {
"type": "faqs",
"content": "[{\"id\":2,\"title\":\"What is Bazaar?\",\"info\":\"Bazaar is an offer discovery platform that helps you discover the best offers from your favorite brands as well as discover new brands and products that you'll love! Bazaar is powered by maya.ai, who understands your tastes and preferences and provides personalized and relevant offer recommendations.\"},{\"id\":3,\"title\":\"How does Bazaar work?\",\"info\":\"As your offer partner, we are keen to extend great offers and savings to you through Bazaar, which is our intelligent offer platform that connects you to brands and offers that cater to your interests and preferences. Bazaar is GDPR Complaint, and uses AI and non-PII data, such as transaction information or brand/category affinity, to provide personalized recommendations for every user\"},{\"id\":4,\"title\":\"How can I become a member on Bazaar?\",\"info\":\"Bazaar memberships are provided by bank name Bank. If you are a customer of bank name Bank, you can directly access Bazaar from your mobile banking app.<br/>Note: Subject to change\"},{\"id\":5,\"title\":\"What are the different offers I can get from Bazaar?\",\"info\":\"Bazaar hosts an exhaustive list of offers from our merchant and brand partners across dining, travel, fashion and retail. These offers could be in the form of instant discounts, coupon codes or cashbacks that get credited to you at a later date.\"},{\"id\":6,\"title\":\"What are the steps to avail an offer?\",\"info\":\"In order to ensure simplicity and ease of access, we allow you to claim offers and store them under the 'claimed offers' section of your Bazaar App. You can claim offers on the go, and revisit your claimed offers section to redeem the offers. Upon redeeming the offer you will be redirected to the merchant's website, where you may provide the coupon code at the checkout page to avail the offer\"},{\"id\":7,\"title\":\"What are the Terms of Service of Bazaar?\",\"info\":\"Please find our Terms of Service <span className='cursor primary-color'> here </span>\"},{\"id\":8,\"title\":\"How to change my account settings?\",\"info\":\"The profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can visit the relevant subsections to update your account details\"},{\"id\":9,\"title\":\"How to change my language preference?\",\"info\":\"Preferred language can be selected while onboarding on to the app, and can be changed later from the Account Settings Panel as well. On the web version of the Bazaar App, click on the language selection button. On the mobile App, the profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can scroll down to find the Language section.\"},{\"id\":10,\"title\":\"How to change my email preferences/notification settings?\",\"info\":\"The profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can visit the 'Notification Settings' subsection to alter your preferences\"},{\"id\":11,\"title\":\"What is the Taste Profile?\",\"info\":\"The Taste Profile is a collection of affiinities of the individual user. These affinities are created on the basis of the users' interaction on the Bazaar App through likes, dislikes, purchace history, purchase frequency, etc. As the user's interaction increases, we will be able to understand their preferences and recommend relevant offers in return. The Taste profile helps to optimize this process without requiring personally identifiable information from the user.\"},{\"id\":12,\"title\":\"How can I edit my Taste Profile?\",\"info\":\"The profile icon on the Bazaar App will lead you to the Account Settings panel. In the account settings panel, you can visit the 'Taste Profile' subsection to alter your preferences. Alternatively, you can also modify your taste profile through your interactions such as disliking, rating and reviewing the recommendations.\"},{\"id\":13,\"title\":\"How can I see my recommendations?\",\"info\":\"Log in to your Bazaar App on mobile or on the web version. Alternatively, you could also find Bazaar as an extention within your bank's mobile app. On the homepage, you may notice different categories and personalized lists under which the offers recommended to you are present.\"},{\"id\":14,\"title\":\"How can I improve the recommendations I get?\",\"info\":\"Our recommendation system is ever evolving with every interaction on the Bazaar App. You can improve the recommendations by modifying your taste profile to tell us what you like, or by modifying your interactions with recommendations you receive, such as disliking an offer you do not wish to see again.\"},{\"id\":15,\"title\":\"What is product TasteMatch Score?\",\"info\":\"TasteMatch score™ is an affinity based scoring system that informs how relevant the offer is to the end user. A TasteMatch score ™ for the same offer may be different for every user. This is because the TasteMatch score ™ accounts every user's interaction such as likes, dislikes, transaction history, taste preference, then ranks the exisisting offers in a decreasing order of preferrence i.e. most preferred offer will be the first offer you see on the list. A Higher TasteMatch score (tm) indicates a higher relevance for the offer.\"},{\"id\":16,\"title\":\"How is the promotional content relevant to me?\",\"info\":\"We have a vast number of brands within our merchant ecosystem, who provide many offers and discounts everyday. Maya.ai collates these offers in real time, matches the right offers for every customer, based on the individual taste preferences, to provide personalized recommendations for every user. This helps the user discover the right offers (for them) at the right time, and additionally saves precious time and effort otherwise used to decluttering irrelevant offers.\"},{\"id\":17,\"title\":\"How are orders delivered to me?\",\"info\":\"When a user redeems an offer, we redirect them to the merchant's website to complete the order and checkout. The merchant partner will process the order and deliver to the user. The delivery policies of the merchant, from whose website the user shops at, will apply in such cases.\"},{\"id\":18,\"title\":\"What are the shipping policies of Bazaar?\",\"info\":\"Shipping policies are subject to change based on those that are mandated by the merchant partner. Please visit the merchant's website or app for more details.\"},{\"id\":19,\"title\":\"What are the shipping restrictions?\",\"info\":\"Shipping policies are subject to change based on those that are mandated by the merchant partner. We recommend carefully reading any and all shipping policies and/or restrictions on the merchant's website or app before placing an order.\"},{\"id\":20,\"title\":\"Is there International Shipping available?\",\"info\":\"International shipping facility is subject to the merchant's ability to do the fulfillment. The shipping policies and restrictions mandated by the merchant and/or service locations will apply. We recommend carefully reading any and all shipping policies and/or restrictions on the merchant's website or app before placing an order.\"},{\"id\":21,\"title\":\"How can I raise an issue or give feedback on shipping?\",\"info\":\"Any and all fulfillment and shipping related feedback can be provided by the merchant partner's customer care or help center.\"},{\"id\":22,\"title\":\"How can I raise a complaint if my redemption code / cashback doesn't work?\",\"info\":\"All redemption / cashback related issues can be solved by the merchant partner's customer care or help center.\"},{\"id\":23,\"title\":\"How do I know the choices I see is personalised for me?\",\"info\":\"All data that is available to us such as location, clicks, likes, wishlists, previous purchases, etc. contributes to personalization. All of this put together helps in identifying segments of visitors with distinct preferences or needs, for creating targeted experiences for them.\"},{\"id\":24,\"title\":\"What kind of data do you track and use?\",\"info\":\"We track the users location and use all interaction based data such as clicks, wishlists, likes, purchases, etc., to enrich the users Taste Profile. We also use transaction data to deliver better choices.\"}]",
"lastUpdated": "2021-09-30T12:02:36+00:00"
}
Scenario: [19.1:288]
To validate the response for Feedback api
ms: 1044
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:07.004 karate.env system property was: null
20:57:07.005 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
278
Given headers req_headers
0
279
And url baseUrl
0
280
And path feedbackApiUrl
0
281
And request {rating:2, reviewAndSuggestion:test, topic:Report the Bugs }
0
282
When method Post
1041
20:57:07.009 request:
1 > POST https://dev-consumer-api.crayondata.com/api/v3/user/feedback
1 > Authorization: auth
1 > Content-Type: application/json; charset=UTF-8
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Content-Length: 67
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
{"rating":2,"reviewAndSuggestion":"test","topic":"Report the Bugs"}
20:57:08.048 response time in milliseconds: 1039
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:07 GMT
true
283
Then status 200
0
284
Then print response
1
20:57:08.049 [print] true
Scenario: [20.1:302]
To validate the response of redeemed offers
ms: 1119
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:07.120 karate.env system property was: null
20:57:07.121 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
293
Given headers req_headers
0
294
And url baseUrl
0
295
And path redeemOffersApiUrl
0
296
When method get
1117
20:57:07.126 request:
1 > GET https://dev-consumer-api.crayondata.com/api/v3/user/redeemed/offers
1 > Authorization: auth
1 > Content-Type: application/json
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
20:57:08.241 response time in milliseconds: 1115
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:07 GMT
{"totalRedeemedOffers":0,"totalSpent":0,"totalSavings":0,"redeemedOffers":[]}
297
Then status 200
0
298
Then print response
1
20:57:08.242 [print] {
"totalRedeemedOffers": 0,
"totalSpent": 0,
"totalSavings": 0,
"redeemedOffers": [
]
}
Scenario: [21.1:318]
To validate the response interacted merchant||Offers
ms: 953
>>
Background:
6
* def req_headers = {Authorization :'auth', Content-Type: 'application/json',User-Access-Token: '0005e4bf-189d-49d0-8887-ab7cb9fde111'}
0
20:57:07.748 karate.env system property was: null
20:57:07.748 Your OS Is {
"name": "Windows 10",
"type": "windows"
}
7
* def lang = {lang:'en'}
0
8
* def limittype = {limit:10}
0
9
* def campaigntype = {campaignType:'EVENT'}
0
10
* def searchword = {searchWord:'retail'}
0
11
* def docsurl = {type :'privacy_policy'}
0
307
Given headers req_headers
0
308
And url baseUrl
0
309
And path campaignsApiUrl
0
310
And params campaigntype
0
311
And params lang
0
312
When method get
951
20:57:07.753 request:
1 > GET https://dev-consumer-api.crayondata.com/api/v3/user/campaigns?campaignType=EVENT&lang=en
1 > Authorization: auth
1 > Content-Type: application/json
1 > User-Access-Token: 0005e4bf-189d-49d0-8887-ab7cb9fde111
1 > Host: dev-consumer-api.crayondata.com
1 > Connection: Keep-Alive
1 > User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.9)
1 > Accept-Encoding: gzip,deflate
20:57:08.702 response time in milliseconds: 949
1 < 200
1 < x-frame-options: SAMEORIGIN
1 < Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, private
1 < Pragma: no-cache
1 < x-xss-protection: 1; mode=block
1 < x-content-type-options: nosniff
1 < expires: 0
1 < x-download-options: noopen
1 < Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; frame-ancestors 'none'
1 < Strict-Transport-Security: max-age=63072000; includeSubdomains; preload
1 < Access-Control-Allow-Origin: *
1 < access-control-allow-credentials: true
1 < access-control-allow-headers: X-Requested-With,Content-Type,Authorization,User-Access-Token,source-page
1 < access-control-allow-methods: GET,POST,OPTIONS,DELETE
1 < Access-Control-Max-Age: 600
1 < vary: accept-encoding
1 < Content-Type: application/json;charset=utf-8
1 < Transfer-Encoding: chunked
1 < Date: Tue, 10 May 2022 15:27:07 GMT
{"campaigns":[{"id":"202107","name":"Season of love","description":"","images":{"default":"https://bank-maya-data.s3.amazonaws.com/bank-maya-data/bank_maya/data/campaigns_hub/202107.png","thumbnail":"https://bank-maya-data.s3.amazonaws.com/bank-maya-data/bank_maya/data/campaigns_hub/202107.png"},"campaignType":"EVENT","externalId":202107,"cities":["all"],"startDateTime":"2021-07-26T00:00:00Z","endDateTime":"2023-02-02T23:59:00Z","active":true,"heroCampaign":true,"created":"2020-02-02T00:00:00Z"},{"id":"201103","name":"Instant Discovery Campaign","description":"","images":{"default":"https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-201103.png","thumbnail":"https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-201103.png"},"campaignType":"EVENT","cities":["all"],"startDateTime":"2022-04-12T00:00:00Z","endDateTime":"2022-05-16T23:59:00Z","active":true,"heroCampaign":true,"created":"2021-12-24T00:00:00Z"},{"id":"200102","name":"Instant Retail Stores Campaign","description":"","images":{"default":"https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-200102.png","thumbnail":"https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-200102.png"},"campaignType":"EVENT","cities":["all"],"startDateTime":"2022-04-12T00:00:00Z","endDateTime":"2022-05-16T23:59:00Z","active":true,"heroCampaign":true,"created":"2021-12-24T00:00:00Z"}]}
313
Then status 200
0
314
Then print response
1
20:57:08.704 [print] {
"campaigns": [
{
"id": "202107",
"name": "Season of love",
"description": "",
"images": {
"default": "https://bank-maya-data.s3.amazonaws.com/bank-maya-data/bank_maya/data/campaigns_hub/202107.png",
"thumbnail": "https://bank-maya-data.s3.amazonaws.com/bank-maya-data/bank_maya/data/campaigns_hub/202107.png"
},
"campaignType": "EVENT",
"externalId": 202107,
"cities": [
"all"
],
"startDateTime": "2021-07-26T00:00:00Z",
"endDateTime": "2023-02-02T23:59:00Z",
"active": true,
"heroCampaign": true,
"created": "2020-02-02T00:00:00Z"
},
{
"id": "201103",
"name": "Instant Discovery Campaign",
"description": "",
"images": {
"default": "https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-201103.png",
"thumbnail": "https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-201103.png"
},
"campaignType": "EVENT",
"cities": [
"all"
],
"startDateTime": "2022-04-12T00:00:00Z",
"endDateTime": "2022-05-16T23:59:00Z",
"active": true,
"heroCampaign": true,
"created": "2021-12-24T00:00:00Z"
},
{
"id": "200102",
"name": "Instant Retail Stores Campaign",
"description": "",
"images": {
"default": "https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-200102.png",
"thumbnail": "https://stagestudiosdata.blob.core.windows.net/dev-merchant-data/campaigns-200102.png"
},
"campaignType": "EVENT",
"cities": [
"all"
],
"startDateTime": "2022-04-12T00:00:00Z",
"endDateTime": "2022-05-16T23:59:00Z",
"active": true,
"heroCampaign": true,
"created": "2021-12-24T00:00:00Z"
}
]
}